mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
init
This commit is contained in:
parent
93ca46f731
commit
cd9fb08c10
@ -4,11 +4,16 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// deps for editor
|
// deps for editor
|
||||||
import 'codemirror/lib/codemirror.css' // codemirror
|
// import 'codemirror/lib/codemirror.css' // codemirror
|
||||||
import 'tui-editor/dist/tui-editor.css' // editor ui
|
// import 'tui-editor/dist/tui-editor.css' // editor ui
|
||||||
import 'tui-editor/dist/tui-editor-contents.css' // editor content
|
// import 'tui-editor/dist/tui-editor-contents.css' // editor content
|
||||||
|
|
||||||
import Editor from 'tui-editor'
|
// import Editor from 'tui-editor'
|
||||||
|
// import defaultOptions from './default-options'
|
||||||
|
|
||||||
|
import 'codemirror/lib/codemirror.css'
|
||||||
|
import '@toast-ui/editor/dist/toastui-editor.css'
|
||||||
|
import Editor from '@toast-ui/editor'
|
||||||
import defaultOptions from './default-options'
|
import defaultOptions from './default-options'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -62,8 +67,8 @@ export default {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value(newValue, preValue) {
|
value(newValue, preValue) {
|
||||||
if (newValue !== preValue && newValue !== this.editor.getValue()) {
|
if (newValue !== preValue && newValue !== this.editor.getMarkdown()) {
|
||||||
this.editor.setValue(newValue)
|
this.editor.setMarkdown(newValue)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
language(val) {
|
language(val) {
|
||||||
@ -90,10 +95,10 @@ export default {
|
|||||||
...this.editorOptions
|
...this.editorOptions
|
||||||
})
|
})
|
||||||
if (this.value) {
|
if (this.value) {
|
||||||
this.editor.setValue(this.value)
|
this.editor.setMarkdown(this.value)
|
||||||
}
|
}
|
||||||
this.editor.on('change', () => {
|
this.editor.on('change', () => {
|
||||||
this.$emit('input', this.editor.getValue())
|
this.$emit('input', this.editor.getMarkdown())
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
destroyEditor() {
|
destroyEditor() {
|
||||||
@ -101,11 +106,11 @@ export default {
|
|||||||
this.editor.off('change')
|
this.editor.off('change')
|
||||||
this.editor.remove()
|
this.editor.remove()
|
||||||
},
|
},
|
||||||
setValue(value) {
|
setMarkdown(value) {
|
||||||
this.editor.setValue(value)
|
this.editor.setMarkdown(value)
|
||||||
},
|
},
|
||||||
getValue() {
|
getMarkdown() {
|
||||||
return this.editor.getValue()
|
return this.editor.getMarkdown()
|
||||||
},
|
},
|
||||||
setHtml(value) {
|
setHtml(value) {
|
||||||
this.editor.setHtml(value)
|
this.editor.setHtml(value)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user