misc_pterodactyl-panel/resources/assets/pterodactyl/scripts/app.js

83 lines
1.8 KiB
JavaScript
Raw Normal View History

import Vue from 'vue';
2018-03-31 21:33:10 +00:00
import Vuex from 'vuex';
import vuexI18n from 'vuex-i18n';
import VuexFlash from 'vuex-flash';
import { createFlashStore } from 'vuex-flash';
import VueRouter from 'vue-router';
2018-03-31 21:33:10 +00:00
// Helpers
import { Ziggy } from './helpers/ziggy';
2018-04-07 19:06:30 +00:00
import Locales from './../../../../resources/lang/locales';
// Base Vuejs Templates
import Login from './components/auth/Login';
import ResetPassword from './components/auth/ResetPassword';
2018-03-31 21:33:10 +00:00
// Used for the route() helper.
window.Ziggy = Ziggy;
2018-03-31 21:33:10 +00:00
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')
});
2018-03-31 21:33:10 +00:00
Vue.use(vuexI18n.plugin, store);
Vue.i18n.add('en', Locales.en);
Vue.i18n.set('en');
const router = new VueRouter({
2018-04-08 20:46:32 +00:00
mode: 'history',
routes: [
{
name: 'login',
2018-04-08 20:46:32 +00:00
path: '/auth/login',
component: Login,
},
{
name: 'forgot-password',
2018-04-08 20:46:32 +00:00
path: '/auth/password',
component: Login,
},
{
name: 'checkpoint',
path: '/checkpoint',
component: Login,
},
{
name: 'reset-password',
2018-04-08 20:46:32 +00:00
path: '/auth/password/reset/:token',
component: ResetPassword,
props: function (route) {
return {
token: route.params.token,
email: route.query.email || '',
}
},
}
]
});
2018-03-31 21:33:10 +00:00
require('./bootstrap');
const app = new Vue({
2018-03-31 21:33:10 +00:00
store,
router,
}).$mount('#pterodactyl');