Created
March 18, 2020 10:51
-
-
Save willchambers99/6592fe8d8b4425ae41a026df34ad962d to your computer and use it in GitHub Desktop.
A skeleton for creating a router file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import VueRouter from 'vue-router' | |
Vue.use(VueRouter) | |
const routes = [ | |
] | |
const router = new VueRouter( { | |
mode: 'history', | |
base: process.env.BASE_URL, | |
routes | |
}) | |
export default router |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment