我正在尝试将TinyMCE插件与Vue.js结合使用,我正在从here开始编写教程。我正在添加 .js 文件,因为我没有使用模块加载器。
尝试显示我的应用程序时,出现以下错误消息:
未知的自定义元素: <编辑器> -您是否正确注册了组件?对于递归组件,请确保提供“名称”选项
在app.js上,我有以下代码:
require('./bootstrap');
window.Vue = require('vue');
var Editor = require('@tinymce/tinymce-vue');
Vue.component('example-component', require('./components/ExampleComponent.vue'));
const app = new Vue({
el: '#app',
data :{
menu : 0
},
components: {
'editor': Editor // <- Important part
},
methods:{
}
});
在我的vue组件上,我有这个标签:
<editor api-key="..." :init="{}"></editor>
我做错了什么?