We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to install to nuxt? I have tried to install, but im getting error
Unknown custom element: <Wysiwyg> - did you register the component correctly?
Repro: https://codesandbox.io/s/muddy-pond-v60mj?file=/pages/index.vue Check plugins/wysiwyg.js and nuxt.config.js
plugins/wysiwyg.js
nuxt.config.js
The text was updated successfully, but these errors were encountered:
You need to follow the next steps:
1- Add a file into the plugins folder with the next code
import Vue from 'vue' import wysiwyg from 'vue-wysiwyg' import 'vue-wysiwyg/dist/vueWysiwyg.css' Vue.use(wysiwyg, {HERE YOUR OPTIONS})
2 - import your plugins file in nuxt.config.js file
... plugins: [ { src: '~plugins/helpers.js' }, ], ...
Sorry, something went wrong.
No branches or pull requests
Is it possible to install to nuxt? I have tried to install, but im getting error
Repro: https://codesandbox.io/s/muddy-pond-v60mj?file=/pages/index.vue
Check
plugins/wysiwyg.js
andnuxt.config.js
The text was updated successfully, but these errors were encountered: