mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
16 lines
362 B
JavaScript
16 lines
362 B
JavaScript
import CodeMirror from 'codemirror'
|
|
import 'codemirror/mode/htmlmixed/htmlmixed'
|
|
import 'codemirror/theme/vibrant-ink.css'
|
|
|
|
export default {
|
|
mounted () {
|
|
this.$refs.doc.querySelectorAll('textarea').forEach(ta => {
|
|
CodeMirror.fromTextArea(ta, {
|
|
lineNumbers: false,
|
|
mode: 'htmlmixed',
|
|
theme: 'vibrant-ink'
|
|
})
|
|
})
|
|
}
|
|
}
|