build version 400

This commit is contained in:
Mohit Panjwani
2020-12-02 17:54:08 +05:30
parent 326508e567
commit 89ee58590c
963 changed files with 62887 additions and 48868 deletions

View File

@ -4,37 +4,27 @@
* building robust, powerful web applications using Vue and Laravel.
*/
import router from './router.js'
import Layout from './helpers/layout'
import Plugin from './helpers/plugin'
import store from './store/index'
import utils from './helpers/utilities'
import { mapActions, mapGetters } from 'vuex'
import i18n from './plugins/i18n'
import swal from 'sweetalert'
require('./bootstrap')
Vue.prototype.$utils = utils
window.Vue.prototype.$utils = utils
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
window.hub = new Vue()
window.i18n = i18n
window.Plugin = Plugin
const app = new Vue({
new Vue({
router,
store,
i18n,
swal,
computed: {
...mapGetters([
'isAdmin'
])
},
methods: {
onOverlayClick () {
this.$utils.toggleSidebar()
}
}
}).$mount('#app')