Guest User

Untitled

a guest
Jul 11th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // todos-vue/src/router/index.js
  2.  
  3. // ...
  4. import UserEdit from '@/components/admin/users/Edit'
  5. // ...
  6.  
  7. export default new Router({
  8. routes: [
  9. // ...
  10. {
  11. path: '/admin/users/:id',
  12. name: 'UserEdit',
  13. component: UserEdit
  14. }
  15. // ...
  16. ]
  17. })
Add Comment
Please, Sign In to add comment