diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-12 14:02:05 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-12 14:02:05 +1100 |
| commit | 097e23dde42613a0430f85c087dee9377f2e91af (patch) | |
| tree | 3d4dfab25a27229cc8614febca5c4dec522c8b7e /src/main.ts | |
| parent | 542b2866682642f73ffd5ba6917f94c8c54603a0 (diff) | |
Make basic conversion to typescript
Diffstat (limited to 'src/main.ts')
| -rw-r--r-- | src/main.ts | 5 |
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') |
