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.

11 lines
232 B

import app from '@/app';
import store from '@/stores';
import router from '@/router';
import TDesignVue from '@/plugins/TDesign-vue'; // TDesign按需引入
app.use(store);
app.use(router);
app.use(TDesignVue);
app.mount('#app');