diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..df36fcf Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..3e5a139 --- /dev/null +++ b/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= htmlWebpackPlugin.options.title %> + + + +
+ + + diff --git a/public/zhenggui.png b/public/zhenggui.png new file mode 100644 index 0000000..44f2501 Binary files /dev/null and b/public/zhenggui.png differ diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..55e9881 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,88 @@ + + + + + diff --git a/src/assets/logo.png b/src/assets/logo.png new file mode 100644 index 0000000..f3d2503 Binary files /dev/null and b/src/assets/logo.png differ diff --git a/src/components/CampusMap.vue b/src/components/CampusMap.vue new file mode 100644 index 0000000..a827a14 --- /dev/null +++ b/src/components/CampusMap.vue @@ -0,0 +1,277 @@ + + + + + \ No newline at end of file diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue new file mode 100644 index 0000000..4eff0e2 --- /dev/null +++ b/src/components/HelloWorld.vue @@ -0,0 +1,624 @@ + + + + + diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..01433bc --- /dev/null +++ b/src/main.js @@ -0,0 +1,4 @@ +import { createApp } from 'vue' +import App from './App.vue' + +createApp(App).mount('#app')