0.0.1 • Published 6 years ago
@dllcn/vue-ace v0.0.1
vue-ace
How to use
Install
npm install --save-dev @dllcn/vue-aceRequire it in
componentsof Vue options{ data, methods, ... components: { editor: require('vue2-ace-editor'), }, }Require the editor's mode/theme module in custom methods
{ data, methods: { editorInit: function () { require('brace/ext/language_tools') //language extension prerequsite... require('brace/mode/html') require('brace/mode/javascript') //language require('brace/mode/less') require('brace/theme/chrome') require('brace/snippets/javascript') //snippet } }, }Use the component in template
<editor v-model="content" @init="editorInit" lang="html" theme="chrome" width="500" height="100"></editor>prop
v-modelis requiredprop
langandthemeis same as ace-editor's docprop
heightandwidthcould be one of these:200,200px,50%Access the ACE's instance
<editor ref='myEditor'>let editor = this.$refs.myEditor.editoror
editorInit: function (editor) { }
0.0.1
6 years ago