mirror of
https://github.com/tenrok/vue-cron-editor-bootstrap.git
synced 2026-06-14 18:52:24 +03:00
9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
import Vue from "vue";
|
|
import App from "./App.vue";
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount("#app");
|