You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to use tiptap-vuetify, I have this error log
bundle-esm.js:1448 tiptap-vuetify: Please, specify in options the Vuetify Object ("vuetify" property)
So I log in bundle-esm.js near to the equivalent of src/main.ts
install (VueFuncConstructor, options?: OptionsInterface) {
// console.log(options)
if (!options || !options.vuetify) {
ConsoleLogger.error('Please, specify in options the Vuetify Object ("vuetify" property)')
return
}
And options is {vuetify:undefined}
And my tiptap-vuetify.js is the same of example
import Vue from 'vue'
import vuetify from './vuetify'
import 'vuetify/dist/vuetify.min.css'
import { TiptapVuetifyPlugin } from 'tiptap-vuetify'
// don't forget to import styles
import 'tiptap-vuetify/dist/main.css'
// you don't need it. this is for example purposes
const iconsGroup = localStorage.getItem('current_icons_group') || 'fa'
Vue.use(TiptapVuetifyPlugin, {
vuetify,
// "md" (default), "fa", "mdi"
iconsGroup, // same as "iconsGroup: iconsGroup"
})
So I don't understand, can you help please?
Regards
The text was updated successfully, but these errors were encountered:
Hello,
I use the version 2.23.0 with theses dependencies:
When I try to use tiptap-vuetify, I have this error log
bundle-esm.js:1448 tiptap-vuetify: Please, specify in options the Vuetify Object ("vuetify" property)
So I log in bundle-esm.js near to the equivalent of src/main.ts
And options is {vuetify:undefined}
And my tiptap-vuetify.js is the same of example
So I don't understand, can you help please?
Regards
The text was updated successfully, but these errors were encountered: