Closed GhastlyParadox closed 4 years ago
Decided to bite the bullet on Vuetify 2, so I'll close this.
@GhastlyParadox @iliyaZelenko what's the problem with link? Because I can't update vuetify from 1.x to 2.x but I need editor and your solution is the best, but I have this problem and unfortunately can't use your editor.
Greetings. I'm experiencing the same behavior described here, except for version 1 instead of 2. I highlight text, and the Add Link button appears, but disappears when I click it. In Vue DevTools, I can see a 'hide' event emitted from after clicking 'Add Link', but nothing else happens.
I thought about trying to upgrade to Vuetify 2, but that's a lot of potential headaches I'd really like to avoid if possible. Any help/guidance much appreciated!
Here are my dependencies:
"dependencies": { "axios": "^0.18.1", "js-yaml": "^3.13.1", "lg-thumbnail.js": "^1.1.0", "lightgallery.js": "git+https://github.com/sachinchoolur/lightgallery.js.git", "tiptap-vuetify": "^1.7.0", "vee-validate": "^2.2.7", "vue": "^2.6.11", "vue-lazyload": "^1.3.3", "vue-router": "^3.0.1", "vuelidate": "^0.7.4", "vuetify": "^1.5.22" },
Here's main.js (sorry, new to this interface, code not formatting properly):
` import Vue from 'vue'; import Vuetify from 'vuetify'; import VeeValidate from "vee-validate"; import App from './App'; import router from './router'; import VueLazyload from 'vue-lazyload'; import { TiptapVuetifyPlugin } from 'tiptap-vuetify'; import 'tiptap-vuetify/dist/main.css';
Vue.use(VeeValidate,{ events : 'input', });
Vue.use(Vuetify, { theme: { primary: '#00274c', secondary: '#b0bec5', accent: '#8c9eff', error: '#b71c1c', }, });
Vue.use(TiptapVuetifyPlugin, { // optional, default to 'md' (default vuetify icons before v2.0.0) iconsGroup: 'md', }); `