I need to use UI Components Vuetify with Angular, I use VueCustomElement with angular and work successfully but I tried to add Vuetify but I got some errors like missing $attr, $ ...etc.
I need to add Vuesax, Quaser, or Vuetify because I love it. I know all types of materials like Angular material or PrimeNg but need more customized and I don't have spare time for work.
app.module.ts:
@NgModule({
schemas: [
CUSTOM_ELEMENTS_SCHEMA
]
})
app.component.html:
<my-vue-web-comp></my-vue-web-comp>
app.js
import Vue from 'vue/dist/vue';
import vueCustomElement from 'vue-custom-element';
import Vuetify from 'vuetify';
import {VApp} from 'vuetify/lib';
Vue.use(Vuetify)
Vue.component('v-app', VApp)
Vue.use(vueCustomElement);
const MyVueWebComp = {
template:`
<v-app></v-app>
`
};
Vue.customElement('my-vue-web-comp', MyVueWebComp);