mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-28 10:01:22 +00:00
37 lines
829 B
JavaScript
37 lines
829 B
JavaScript
/*
|
|
* Copyright (c) 2019, Bart van der Braak
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* @author Bart
|
|
*/
|
|
|
|
import '@babel/polyfill'
|
|
import 'mutationobserver-shim'
|
|
import 'lodash'
|
|
import Vue from 'vue'
|
|
import './plugins/bootstrap-vue'
|
|
import VueRouter from 'vue-router'
|
|
import App from './App.vue'
|
|
|
|
import ConfigSection from "./components/ConfigSection";
|
|
import TableSection from "./components/TableSection";
|
|
|
|
Vue.config.productionTip = false;
|
|
Vue.use(VueRouter);
|
|
|
|
const routes = [
|
|
{ path: '/', name: 'config', component: ConfigSection },
|
|
{ path: '/master/:id', name: 'master', component: TableSection },
|
|
{ path: '**', redirect: {name: 'config'}},
|
|
];
|
|
|
|
const router = new VueRouter({
|
|
mode: 'hash',
|
|
routes
|
|
});
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App),
|
|
}).$mount('#app');
|