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
Ckeditor
Currently this integration exposes two things:
The plugin can be easily imported using the default export like so:
import Plugin from '@ckeditor/ckeditor5-vue';
However, the component itself is only available as the key of the default object:
default
import Plugin from '@ckeditor/ckeditor5-vue'; const Ckeditor = Plugin.component
This integration should have a better export for this component. Example:
import Plugin, { Ckeditor } from '@ckeditor/ckeditor5-vue'; // `Plugin` is the Vue.js plugin // `Ckeditor` is Vue component
The text was updated successfully, but these errors were encountered:
c82a004
Successfully merging a pull request may close this issue.
Currently this integration exposes two things:
Ckeditor
component.Ckeditor
component itself.The plugin can be easily imported using the default export like so:
However, the component itself is only available as the key of the
default
object:This integration should have a better export for this component. Example:
The text was updated successfully, but these errors were encountered: