Created
August 29, 2017 11:02
-
-
Save gearmobile/e15120764c56b7269c7cac55f351748c to your computer and use it in GitHub Desktop.
Create New Vue Router
This file contains hidden or 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
"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