From d0975a6e7ee57de4debda94e823011d813fbf4a1 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Sun, 5 Sep 2021 21:39:24 -0500 Subject: Initial rewrite in svelte --- src/main.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/main.ts') 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 -- cgit v1.2.3