aboutsummaryrefslogtreecommitdiff
path: root/hsm-web/Client/src
diff options
context:
space:
mode:
Diffstat (limited to 'hsm-web/Client/src')
-rw-r--r--hsm-web/Client/src/App.vue3
-rw-r--r--hsm-web/Client/src/main.js4
2 files changed, 7 insertions, 0 deletions
diff --git a/hsm-web/Client/src/App.vue b/hsm-web/Client/src/App.vue
new file mode 100644
index 0000000..202e4d2
--- /dev/null
+++ b/hsm-web/Client/src/App.vue
@@ -0,0 +1,3 @@
+<template>
+ <h1>HsMouse</h1>
+</template>
diff --git a/hsm-web/Client/src/main.js b/hsm-web/Client/src/main.js
new file mode 100644
index 0000000..01433bc
--- /dev/null
+++ b/hsm-web/Client/src/main.js
@@ -0,0 +1,4 @@
+import { createApp } from 'vue'
+import App from './App.vue'
+
+createApp(App).mount('#app')