🎉 First commit, from couchbase generator, basic changes
not tested / updated yet
This commit is contained in:
19
{{cookiecutter.project_slug}}/frontend/src/main.ts
Normal file
19
{{cookiecutter.project_slug}}/frontend/src/main.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import '@babel/polyfill';
|
||||
// Import Component hooks before component definitions
|
||||
import './component-hooks';
|
||||
import Vue from 'vue';
|
||||
import './plugins/vuetify';
|
||||
import './plugins/vee-validate';
|
||||
import App from './App.vue';
|
||||
import router from './router';
|
||||
import store from '@/store';
|
||||
import './registerServiceWorker';
|
||||
import 'vuetify/dist/vuetify.min.css';
|
||||
|
||||
Vue.config.productionTip = false;
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
store,
|
||||
render: (h) => h(App),
|
||||
}).$mount('#app');
|
Reference in New Issue
Block a user