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.
16 lines
382 B
16 lines
382 B
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
import store from './store';
|
|
import permission from './utils/permission';
|
|
import { navTo } from '@/utils/common';
|
|
import uvUI from '@/uni_modules/uv-ui-tools'
|
|
import { createPinia } from 'pinia'
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(store);
|
|
app.use(permission);
|
|
app.use(uvUI);
|
|
app.use(createPinia())
|
|
|
|
app.mount('#app');
|