You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
825 B
24 lines
825 B
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import ElementPlus from "element-plus";
|
|
import "element-plus/dist/index.css";
|
|
import * as ElementPlusIconsVue from "@element-plus/icons-vue";
|
|
// import 'reset-css';
|
|
import { createPinia } from "pinia";
|
|
import piniaPluginPersistedstate from "pinia-plugin-persistedstate";
|
|
import { useAppBridge } from "./assets/js/useAppBridge.js";
|
|
const { packageFun, fullClose } = useAppBridge();
|
|
|
|
const app = createApp(App);
|
|
const pinia = createPinia();
|
|
pinia.use(piniaPluginPersistedstate);
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component);
|
|
}
|
|
app.use(router);
|
|
app.use(ElementPlus);
|
|
app.use(pinia);
|
|
app.provide("packageFun", packageFun);
|
|
app.provide("fullClose", fullClose);
|
|
app.mount("#app");
|