Skip to content

Instantly share code, notes, and snippets.

@gearmobile
Created August 29, 2017 11:02
Show Gist options
  • Save gearmobile/e15120764c56b7269c7cac55f351748c to your computer and use it in GitHub Desktop.
Save gearmobile/e15120764c56b7269c7cac55f351748c to your computer and use it in GitHub Desktop.
Create New Vue Router
"New Vue Router": {
"prefix": "vnr",
"body": [
"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",
" }",
" ]",
"})",
""
],
"description": "New Vue Router"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment