aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-03-12 14:02:05 +1100
committerTerry Truong <terry06890@gmail.com>2022-03-12 14:02:05 +1100
commit097e23dde42613a0430f85c087dee9377f2e91af (patch)
tree3d4dfab25a27229cc8614febca5c4dec522c8b7e /src/main.ts
parent542b2866682642f73ffd5ba6917f94c8c54603a0 (diff)
Make basic conversion to typescript
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts
new file mode 100644
index 0000000..50a4dab
--- /dev/null
+++ b/src/main.ts
@@ -0,0 +1,5 @@
+import { createApp } from 'vue'
+import App from './App.vue'
+import './index.css'
+
+createApp(App).mount('#app')