mirror of
https://github.com/owntracks/frontend.git
synced 2026-02-13 20:59:50 +00:00
13 lines
219 B
JavaScript
13 lines
219 B
JavaScript
import Vue from "vue";
|
|
import App from "@/App.vue";
|
|
import router from "@/router";
|
|
import store from "@/store";
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: h => h(App),
|
|
}).$mount("#app");
|