dangvanthanh / vue-ckeditor2

CKEditor 4 wrapper by Vue.js
https://vue-ckeditor2.surge.sh/
MIT License
171 stars 64 forks source link

Can I use this package in Nuxt.js ? #65

Closed dotneet closed 6 years ago

dotneet commented 6 years ago

I want to use this package in Nuxt.js. But I've got a error below.

TypeError: Vue.component is not a function

I think src/index.js need to add this line

const Vue = require('vue')
dotneet commented 6 years ago

I found the solution. thanks.

 import {VueCkeditor} from 'vue-ckeditor2'
Vue.component('vue-ckeditor', VueCkeditor)