Skip to content

Instantly share code, notes, and snippets.

@ramsaylanier
Created November 29, 2017 00:39
Show Gist options
  • Select an option

  • Save ramsaylanier/0c648806a0ea55255a34fd9546b4807d to your computer and use it in GitHub Desktop.

Select an option

Save ramsaylanier/0c648806a0ea55255a34fd9546b4807d to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/components/Home'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Home',
component: Home
}
]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment