import Vue from 'vue'; import Vuex from 'vuex'; import vuexI18n from 'vuex-i18n'; import VuexFlash from 'vuex-flash'; import { createFlashStore } from 'vuex-flash'; import VueRouter from 'vue-router'; // Helpers import { Ziggy } from './helpers/ziggy'; import Locales from './../../../../resources/lang/locales'; // Base Vuejs Templates import Login from './components/auth/Login'; import ResetPassword from './components/auth/ResetPassword'; // Used for the route() helper. window.Ziggy = Ziggy; Vue.use(Vuex); const store = new Vuex.Store({ plugins: [ createFlashStore(), ], }); const route = require('./../../../../vendor/tightenco/ziggy/src/js/route').default; Vue.config.productionTip = false; Vue.mixin({ methods: { route: route, }, }); Vue.use(VueRouter); Vue.use(VuexFlash, { mixin: true, template: require('./components/errors/Flash.template') }); Vue.use(vuexI18n.plugin, store); Vue.i18n.add('en', Locales.en); Vue.i18n.set('en'); const router = new VueRouter({ routes: [ { name: 'login', path: '/', component: Login, }, { name: 'forgot-password', path: '/forgot-password', component: Login, }, { name: 'checkpoint', path: '/checkpoint', component: Login, }, { name: 'reset-password', path: '/reset-password/:token', component: ResetPassword, props: function (route) { return { token: route.params.token, email: route.query.email || '', } }, } ] }); require('./bootstrap'); const app = new Vue({ store, router, }).$mount('#pterodactyl');