k5web/src/main.ts

48 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-01-24 13:40:15 +00:00
import { createApp } from 'vue';
import ArcoVueIcon from '@arco-design/web-vue/es/icon';
import globalComponents from '@/components';
import router from './router';
import store from './store';
import i18n from './locale';
import directive from './directive';
import './mock';
import App from './App.vue';
// Styles are imported via arco-plugin. See config/plugin/arcoStyleImport.ts in the directory for details
// 样式通过 arco-plugin 插件导入。详见目录文件 config/plugin/arcoStyleImport.ts
// https://arco.design/docs/designlab/use-theme-package
import '@/assets/style/global.less';
import '@/api/interceptor';
2024-02-02 05:23:07 +00:00
import 'tdesign-vue-next/es/style/index.css';
2024-06-14 23:19:20 +00:00
import Updater from "./utils/AutoUpdate.js";
2024-06-16 06:57:40 +00:00
import VueMatomo from 'vue-matomo';
2024-06-14 23:19:20 +00:00
const AutoUpdate = new Updater()
AutoUpdate.on('update',()=>{
setTimeout(async()=>{
const result = confirm('当前网站有更新,请点击确定刷新页面体验');
if(result){
location.reload();
}
},500)
})
2024-01-24 13:40:15 +00:00
const app = createApp(App);
app.use(ArcoVueIcon);
app.use(router);
app.use(store);
app.use(i18n);
app.use(globalComponents);
app.use(directive);
2024-06-16 06:57:40 +00:00
if(location.hostname == 'k5.vicicode.com' || location.hostname == 'k5.lhw711.cn' || location.hostname == 'mm.md' || location.hostname == 'k5.mm.md'){
app.use(VueMatomo, {
2024-06-16 07:05:20 +00:00
host: '//analytics.vicicode.com',
2024-06-16 06:57:40 +00:00
siteId: 2,
2024-06-16 07:14:53 +00:00
router: router
2024-06-16 06:57:40 +00:00
})
}
2024-01-24 13:40:15 +00:00
app.mount('#app');