### Use (如何引入) #### 方法1 `index.js`: ```javascript // 全局注册 // import with ES6 import Vue from 'vue' import mavonEditor from 'mavon-editor' import 'mavon-editor/dist/css/index.css' // use Vue.use(mavonEditor) new Vue({ 'el': '#main', data() { return { value: '' } } }) ``` `index.html` ```html // 下同
``` #### 方法2 `index.js`: ```javascript // 全局注册 // require with Webpack/Node.js ... var mavonEditor = require('mavon-editor') import 'mavon-editor/dist/css/index.css' ... ``` #### 方法3 `editor.vue`: ```javascript ``` `index.js`: ```javascript // 下同 import Vue from 'vue'; var editor = require('./editor.vue'); new Vue({ el: '#main', render: h => h(editor) }); ``` `index.html`: ```html // 下同
``` #### 方法4 `editor.vue`: ```javascript ... ```