chore: bump marked

This commit is contained in:
Evan You
2022-01-18 07:57:00 +08:00
parent 8cbfe092cf
commit 0c06c748a5
4 changed files with 8 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ const { ref, computed } = Vue
Vue.createApp({
setup() {
const input = ref('# hello')
const output = computed(() => marked(input.value, { sanitize: true }))
const output = computed(() => marked.marked(input.value, { sanitize: true }))
const update = _.debounce(e => { input.value = e.target.value }, 50)
return {