mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 08:27:08 +00:00
Fix Markdown functions in root component
This commit is contained in:
@@ -47,9 +47,11 @@ new Vue({
|
||||
methods: {
|
||||
|
||||
markdown (value) {
|
||||
return typeof value == "string"
|
||||
? marked(value)
|
||||
: value;
|
||||
return markdown(value);
|
||||
},
|
||||
|
||||
markdownInline (value) {
|
||||
return markdownInline(value);
|
||||
},
|
||||
|
||||
showSnack(text, colour = "primary") {
|
||||
|
||||
Reference in New Issue
Block a user