From: Haoqun Jiang Date: Tue, 30 Nov 2021 06:40:18 +0000 (+0800) Subject: chore: remove redundant files X-Git-Tag: v3.0.0~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13b4f71d7854a1765b5fafd1366f28b201331314;p=thirdparty%2Fvuejs%2Fcreate-vue.git chore: remove redundant files --- diff --git a/template/code/typescript-router/src/main.ts b/template/code/typescript-router/src/main.ts deleted file mode 100644 index c8e37b03..00000000 --- a/template/code/typescript-router/src/main.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { createApp } from 'vue' -import App from './App.vue' -import router from './router' - -const app = createApp(App) - -app.use(router) - -app.mount('#app')