main.ts 274 B

123456789101112
  1. import { createApp } from 'vue';
  2. import App from './App.tsx';
  3. import router from './router/index';
  4. import dayjs from 'dayjs';
  5. import 'dayjs/locale/zh-cn';
  6. import './styles/index.less';
  7. const app = createApp(App);
  8. dayjs.locale('zh-ch');
  9. app.use(router);
  10. app.mount('#app');