LiveAtlas/src/main.ts

13 lines
344 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-23 12:13:28 +00:00
import {store} from "@/store";
2020-11-20 18:43:30 +00:00
2020-11-23 12:13:28 +00:00
import 'leaflet/dist/leaflet.css';
import 'normalize-scss/sass/normalize/_import-now.scss';
2020-12-01 23:20:38 +00:00
import '@/scss/style.scss';
// import './assets/css/rtgame.css';
2020-11-23 12:13:28 +00:00
const app = createApp(App).use(store);
2020-12-01 23:20:38 +00:00
// app.config.performance = true;
2020-11-23 12:13:28 +00:00
app.mount('#mcmap');