vue 2.6.14 vuetify 2.6.9
What is the process for integrating vuetify into a vue application? I am attempting to import my project into another project as a microfrontend application, but encountering issues.
Here are the steps I followed:
- Create-single-spa root config
- Create a vue application in the project
- Run vue add vuetify in the vue app directory
- Import vuetify in main.js in the vue app
- Expecting success... but facing challenges
package.json
{
"name": "@site/site",
"version": "0.1.0",
...
site/main.js
import Vue from "vue";
import singleSpaVue from "single-spa-vue";
...
export const bootstrap = vueLifecycles.bootstrap;
export const mount = vueLifecycles.mount;
export const unmount = vueLifecycles.unmount;