2018-03-31 21:52:11 +01:00
|
|
|
import Vue from 'vue';
|
2018-03-31 22:33:10 +01:00
|
|
|
import Vuex from 'vuex';
|
|
|
|
import vuexI18n from 'vuex-i18n';
|
2018-03-31 21:52:11 +01:00
|
|
|
import VueRouter from 'vue-router';
|
2018-03-31 22:33:10 +01:00
|
|
|
|
|
|
|
// Helpers
|
2018-03-31 21:52:11 +01:00
|
|
|
import { Ziggy } from './helpers/ziggy';
|
2018-03-31 22:33:10 +01:00
|
|
|
import Locales from './../../../../resources/i18n/locales';
|
2018-03-31 21:52:11 +01:00
|
|
|
|
|
|
|
// Base Vuejs Templates
|
|
|
|
import Login from './components/auth/Login';
|
|
|
|
|
2018-03-31 22:33:10 +01:00
|
|
|
// Used for the route() helper.
|
2018-03-31 21:52:11 +01:00
|
|
|
window.Ziggy = Ziggy;
|
|
|
|
|
2018-03-31 22:33:10 +01:00
|
|
|
Vue.use(Vuex);
|
2018-03-31 21:52:11 +01:00
|
|
|
|
2018-03-31 22:33:10 +01:00
|
|
|
const store = new Vuex.Store();
|
2018-03-31 21:52:11 +01:00
|
|
|
const route = require('./../../../../vendor/tightenco/ziggy/src/js/route').default;
|
|
|
|
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
Vue.mixin({
|
|
|
|
methods: {
|
|
|
|
route: route,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Vue.use(VueRouter);
|
2018-03-31 22:33:10 +01:00
|
|
|
Vue.use(vuexI18n.plugin, store);
|
|
|
|
|
|
|
|
Vue.i18n.add('en', Locales.en);
|
|
|
|
Vue.i18n.set('en');
|
2018-03-31 21:52:11 +01:00
|
|
|
|
|
|
|
const router = new VueRouter({
|
|
|
|
routes: [
|
|
|
|
{
|
|
|
|
path: '/:action?',
|
|
|
|
component: Login,
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2018-03-31 22:33:10 +01:00
|
|
|
require('./bootstrap');
|
|
|
|
|
2018-03-31 21:52:11 +01:00
|
|
|
const app = new Vue({
|
2018-03-31 22:33:10 +01:00
|
|
|
store,
|
2018-03-31 21:52:11 +01:00
|
|
|
router,
|
|
|
|
}).$mount('#pterodactyl');
|