From 477ea421a6ecd12645dd25b4d14fd1d67085f08f Mon Sep 17 00:00:00 2001 From: 白咕咕 <67865300+baimianxiao@users.noreply.github.com> Date: Tue, 7 Nov 2023 01:28:02 +0800 Subject: 倒计时组件 (#72) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 部署官网框架 * 部署官网框架 * 部署官网框架 * 修改标题 * 初步完成左侧倒计时组件 * favicon --------- Co-authored-by: 白咕咕 --- site/src/main.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 site/src/main.ts (limited to 'site/src/main.ts') diff --git a/site/src/main.ts b/site/src/main.ts new file mode 100644 index 0000000..11c062f --- /dev/null +++ b/site/src/main.ts @@ -0,0 +1,22 @@ +/** + * main.ts + * + * Bootstraps Vuetify and other plugins then mounts the App` + */ + +// Components +import App from './App.vue' + +// Composables +import { createApp } from 'vue' + +// Plugins +import { registerPlugins } from '@/plugins' + +import './assets/main.css' + +const app = createApp(App) + +registerPlugins(app) + +app.mount('#app') -- cgit v1.2.3-70-g09d2