-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
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
Add link doesn't work for vuetify 2 #29
Comments
Hi, glad you are using my package, thanks. I have not tested this for the Vuetify 2. It's good that at least something works. Like this issue if you are using the Vuetify 2 and you want me to quickly make support for the Vuetify 2. I plan to add support for Vuetify 2, but I don’t know what to do with version 1, maybe I’ll stop supporting it. |
@noobling how u configure to work with vuetify 2? can U show? tks |
import Vue from "vue";
import Vuetify, { VTooltip, VToolbar, VCard, VIcon, VBtn } from "vuetify/lib";
import { TiptapVuetifyPlugin } from "tiptap-vuetify";
import "tiptap-vuetify/dist/main.css";
Vue.use(Vuetify, {
components: {
VTooltip,
VToolbar,
VCard,
VIcon,
VBtn
}
});
Vue.use(TiptapVuetifyPlugin, { iconsGroup: "mdi" });
export default new Vuetify({
icons: {
iconfont: "mdi"
}
}); Here is a way to fix it. This is the I think the root cause is due to Vuetify Loader not detecting the compiled dist file and adding the auto imports. I think before Vuetify |
it work nicely. thank a lot |
@noobling Good fix thanks. Do you know how to remove the warning |
@sorxrob you can try something like this: |
# [2.0.0](v1.7.0...v2.0.0) (2019-10-06) ### Features * architecture changes ([14b6604](14b6604)) * rewrite plugin, dependency update, small refactor ([f0a5d06](f0a5d06)) * **eslint:** rollback versions for ESLint's tools until they solve the problems with the Vue ([e0a29ef](e0a29ef)) * **extensions, i18n, icons:** rewrite extensions for a new look, news i18n for links, fix icons ([42cdc13](42cdc13)) * **vuetify 2:** rewrote the components for the Vuetify 2. Also other minor changes ([7ac50f3](7ac50f3)), closes [#33](#33) [#29](#29) [#43](#43) [#21](#21) [#18](#18) ### BREAKING CHANGES * Vuetify version, accces to vuetify via required property in options * extensions are now used differently
I released version 2 with support for Vuetify 2, everything should work now. |
Thanks for all your work! |
Thanks for your work man.
I am not sure if this is a vuetify 2 specific issue but I can't add a link when I click the button it just closes.
Hopefully, this helps.
And my package.json
The text was updated successfully, but these errors were encountered: