Closed sudoloic closed 5 years ago
Ok, I fixed it with :
Vue.use(VuetifyConfirm, {
vuetify: vuetify
})
Same issue. That does not fix it. Neither does Vue.use(VuetifyConfirm, { $vuetify: veutifyObj.framework })
I needed:
import Vue from 'vue'
import Vuetify from 'vuetify/lib'
const veutifyObj = new Vuetify({
theme: { dark: true },
});
Vue.use(VuetifyConfirm, { vuetify: veutifyObj })
Hello,
it seems
this.$vuetify.icons
is undefined as I get the errorcannot read property 'values' of undefined
.Am i doing something wrong ?
Using vuetify2, vuetify-confirm@2.0.0 and font awesome icons if that is of any help