diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-11-05 09:27:35 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-11-05 09:27:35 -0500 |
| commit | 85380b4b60bf74507a01957b29bd6e3808e216db (patch) | |
| tree | a43784660fdc29e5b95df3e358cf722eec2b092b /src/main.ts | |
| parent | ffef3a6be19d1139b6378c8119d444082dd0cbac (diff) | |
| parent | 29fc563863f561cdc707485289c5580b4397a580 (diff) | |
Merge pull request #10 from cobraguy/rewrite
Update to Svelte app
Diffstat (limited to 'src/main.ts')
| -rw-r--r-- | src/main.ts | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/main.ts b/src/main.ts index c673f53..4c473fa 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,7 @@ -import { createApp } from 'vue'; -import App from './App.vue'; -import router from './router'; -import store from './store'; +import App from './App.svelte'; -createApp(App).use(store).use(router).mount('#app'); +const app = new App({ + target: document.body +}); + +export default app;
\ No newline at end of file |
