Skip to content

Instantly share code, notes, and snippets.

@mfaridzia
Created April 2, 2018 17:26
Show Gist options
  • Save mfaridzia/4df32103851fe74932fdb6944ef1b1fd to your computer and use it in GitHub Desktop.
Save mfaridzia/4df32103851fe74932fdb6944ef1b1fd to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import Router from 'vue-router'
import Counter from '@/components/Counter'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Counter',
component: Counter
}
]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment