UNPKG

vuex-asr

Version:

* Version: 0.7.52 * License M.I.T. * [Online Documentation](https://vuex-asr.github.io/vuex-asr/) * author: Joris Wenting * email: vuex.asr@gmail.com * [linkedIn](https://www.linkedin.com/in/joriswenting/). * [contribute](https://vuex-asr.github.io/vuex-a

68 lines (65 loc) 1.63 kB
import Vue from "vue"; import Router from "vue-router"; import Home from "./views/Home.vue"; Vue.use(Router); export default new Router({ routes: [ { path: "/", name: "home", component: Home }, { path: "/asr-bind-state-overview", name: "asr-bind-state", component: () => import( /* webpackChunkName: "about" */ "./views/AsrBindStateOverview.vue" ) }, { path: "/asr-bind-getters-overview", name: "asr-bind-getters", component: () => import( /* webpackChunkName: "about" */ "./views/AsrBindGettersOverview.vue" ) }, { path: "/asr-bind-mutations-overview", name: "asr-bind-mutations", component: () => import( /* webpackChunkName: "about" */ "./views/AsrBindMutationsOverview.vue" ) }, { path: "/asr-bind-actions-overview", name: "asr-bind-actions", component: () => import( /* webpackChunkName: "about" */ "./views/AsrBindActionsOverview.vue" ) }, { path: "/asr-pass-overview", name: "asr-pass", component: () => import(/* webpackChunkName: "about" */ "./views/AsrPassOverview.vue") }, { path: "/asr-bind-config-overview", name: "asr-bind-config", component: () => import( /* webpackChunkName: "about" */ "./views/AsrBindConfigOverview.vue" ) }, { path: "/sandbox", name: "sandbox", component: () => import(/* webpackChunkName: "about" */ "./views/Sandbox.vue") } ] });