radiator-web/src/main.ts
garionion bb249e63fc
first commit
Signed-off-by: garionion <github@entr0py.de>
2021-04-02 23:16:56 +02:00

9 lines
159 B
TypeScript

import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
const app = createApp(App);
app.use(router);
app.mount("#app");