Skip to content

Commit

Permalink
Fix: Check support in text does not convert correctly to VUE (adempie…
Browse files Browse the repository at this point in the history
  • Loading branch information
elsiosanchez authored Nov 2, 2023
1 parent a177b27 commit 408a5d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ import * as globalMethods from '@/utils/ADempiere/globalMethods' // global metho
*/
import VueMarkdownEditor from '@kangc/v-md-editor'
import createEmojiPlugin from '@kangc/v-md-editor/lib/plugins/emoji/index'
import createTodoListPlugin from '@kangc/v-md-editor/lib/plugins/todo-list/index'
import '@kangc/v-md-editor/lib/plugins/todo-list/todo-list.css'
import '@kangc/v-md-editor/lib/plugins/emoji/emoji.css'
import '@kangc/v-md-editor/lib/style/base-editor.css'
import vuepressTheme from '@kangc/v-md-editor/lib/theme/vuepress.js'
Expand Down Expand Up @@ -91,11 +93,12 @@ if (process.env.NODE_ENV === 'production') {
*/
VueMarkdownEditor.use(vuepressTheme)
VueMarkdownEditor.use(createEmojiPlugin())
VueMarkdownEditor.use(createTodoListPlugin())
VMdPreview.use(githubTheme, {
Hljs: hljs
})
VMdPreview.use(createEmojiPlugin())

VMdPreview.use(createTodoListPlugin())
Vue.use(VMdPreview)
Vue.use(VueMarkdownEditor)
Vue.use(VueCompositionApi)
Expand Down

0 comments on commit 408a5d7

Please sign in to comment.