美文网首页
vue使用富文本编辑器vue-ueditor

vue使用富文本编辑器vue-ueditor

作者: power__c081 | 来源:发表于2017-06-01 09:38 被阅读0次

    vue使用富文本编辑器vue-ueditor

    npm i vue-ueditor --S

    组件里面只需要写

    <template>

    <vueUEditor></vueUEditor>

    </template>

    <script>

    import vueUEditor from 'vue-ueditor';

    export default {

    components:{vueUEditor,},

    methods:{

    editorready(editorInstance){editorInstance.set('hellowor!');

    editorInstance.addListener('contentChange',()=>{console.log('编辑器发生变化',editorInstance.getContent())})}}}

    </script>

    如果遇到Couldn't find preset "es2015" relative to directory问题

    npm install babel-preset-es2015 --save-dev

    webpack.base.conf.js配置

    loaders: [{

    test: /\.js$/,

    exclude: /(node_modules|bower_components)/,

    loader: 'babel',

    query: {

    presets: ['es2015']

    }}]

    相关文章

      网友评论

          本文标题:vue使用富文本编辑器vue-ueditor

          本文链接:https://www.haomeiwen.com/subject/zwarxxtx.html