LiveAtlas/src/main.ts

6 lines
149 B
TypeScript
Raw Normal View History

2020-11-20 18:43:30 +00:00
import { createApp } from 'vue'
import App from './App.vue'
2020-11-20 21:44:02 +00:00
import store from "@/store";
2020-11-20 18:43:30 +00:00
2020-11-20 21:44:02 +00:00
const app = createApp(App);
app.use(store).mount('#mcmap');