如何在ckeditor 5 vue中使用代码示例?

时间:2019-09-05 03:14:43

标签: vuejs2 ckeditor5

我想在我的ckeditor 5 vue中使用示例代码功能,但是我找不到它。谁能给我一个例子或如何? enter image description here

在我的应用js中

...
import CKEditor from "@ckeditor/ckeditor5-vue";
Vue.use(CKEditor);
...

和我的Vue文件

<template>
    ...
    <ckeditor :editor="editor" v-model="CKValue" :config="editorConfig"></ckeditor>
    ...
</template>

<script>
    import ClassicEditor from "@ckeditor/ckeditor5-build-classic";
    export default {
        data() {
            return {
                CKValue: "",
                editor: ClassicEditor,
                editorConfig: {}
            }
        },
    }
</script>

1 个答案:

答案 0 :(得分:1)

您可以在此处查看示例代码 https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/frameworks/vuejs.html

喜欢这个:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>CKEditor 5 – Vue.js Component – development sample</title>
    <style>
        body {
            max-width: 800px;
            margin: 20px auto;
        }
        textarea {
            width: 100%;
            height: 100px;
            font-family: monospace;
        }
    </style>
</head>
<body>
    <script src="../node_modules/vue/dist/vue.js"></script>
    <script src="../node_modules/@ckeditor/ckeditor5-build-classic/build/ckeditor.js"></script>
    <script src="../dist/ckeditor.js"></script>

    <div id="app">
        <h1>CKEditor 5 – Vue.js Component – development sample</h1>

        <ckeditor
            editor="classic"
            tag-name="textarea"
            v-model="editorData"
            :editor="editor"
            :config="editorConfig"
            :disabled="editorDisabled"
            @ready="onEditorReady"
            @focus="onEditorFocus"
            @blur="onEditorBlur"
            @input="onEditorInput"
            @destroy="onEditorDestroy"
        ></ckeditor>
        <button v-on:click="toggleEditorDisabled()">
            {{ editorDisabled ? 'Enable' : 'Disable' }} editor
        </button>
        <button v-on:click="destroyApp()">Destroy the app</button>

        <h2>Live editor data</h2>
        <textarea v-model="editorData"></textarea>
    </div>

    <script>
        Vue.use( CKEditor );
        const app = new Vue( {
            el: '#app',
            data: {
                editor: ClassicEditor,
                editorData: '<p>Hello world!</p>',
                editorConfig: { toolbar: [ 'heading', '|', 'bold', 'italic' ] },
                editorDisabled: false
            },
            methods: {
                toggleEditorDisabled() {
                    this.editorDisabled = !this.editorDisabled;
                },
                destroyApp() {
                    app.$destroy();
                },
                onEditorReady( editor ) {
                    console.log( 'Editor is ready.', { editor } );
                },
                onEditorFocus( event, editor ) {
                    console.log( 'Editor focused.', { event, editor } );
                },
                onEditorBlur( event, editor ) {
                    console.log( 'Editor blurred.', { event, editor } );
                },
                onEditorInput( data, event, editor ) {
                    console.log( 'Editor data input.', { event, editor, data } );
                },
                onEditorDestroy( editor ) {
                    console.log( 'Editor destroyed.', { editor } );
                }
            }
        } );
    </script>
</body>
</html>