adding latest

This commit is contained in:
2020-03-24 02:04:43 +00:00
parent 77be707311
commit 44aaddd3bc
17 changed files with 284 additions and 85 deletions

View File

@@ -1,14 +1,16 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import vuetify from './plugins/vuetify';
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import vuetify from "./plugins/vuetify";
import VideoBackground from "vue-responsive-video-background-player";
Vue.config.productionTip = false
Vue.config.productionTip = false;
Vue.component("video-background", VideoBackground);
new Vue({
router,
store,
vuetify,
render: h => h(App)
}).$mount('#app')
}).$mount("#app");