diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-02 10:58:22 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-02 11:05:21 +1100 |
| commit | af1555e223ebb1b1813b9b85f4cf8dddc432189e (patch) | |
| tree | 4bf05330cd497f5926d4c7aea4136e3cb3ffc194 /src/main.js | |
Initial commit
Diffstat (limited to 'src/main.js')
| -rw-r--r-- | src/main.js | 4 |
1 files changed, 4 insertions, 0 deletions
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') |
