2
0
mirror of https://github.com/tenrok/vue-cron-editor-bootstrap.git synced 2026-06-14 18:52:24 +03:00
Files
vue-cron-editor-bootstrap/src/main.ts
T
Alex Freitas cd320bb0ac Firts version
2020-05-21 15:42:12 -03:00

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");