我想在我的应用程序中使用VueCkeditor。该应用程序使用的是Vue 2.x,完全是ES5,没有单个文件组件。
我已经从CDN添加了ckeditor和VueCkeditor来源: src =“ // cdn.ckeditor.com/4.6.2/full/ckeditor.js” src =“ https://unpkg.com/vue-ckeditor2”
我正在尝试Vue.use(VueCkeditor)并将其添加为组件:Vue实例化中的VueCkeditor。
然后我就拥有
<vue-ckeditor v-model="adminSelectedCategory.Abstract" />
我收到此错误:
[Vue warn]: Failed to mount component: template or render function not defined.
found in
---> <VueCkeditor>
<Root>
我在做什么错了?