├── .gitignore
├── .meteor
├── .gitignore
├── release
├── platforms
├── .id
├── .finished-upgraders
├── packages
└── versions
├── public
└── img
│ ├── vue.png
│ ├── droids.jpg
│ └── meteor.png
├── server
└── main.js
├── imports
├── ui
│ ├── Page2.vue
│ ├── Page1A.vue
│ ├── Page1B.vue
│ ├── AppLayout.vue
│ ├── Home.vue
│ ├── AppMenu.vue
│ ├── NotFound.vue
│ └── Page1.vue
└── routes.js
├── client
├── main.html
├── main.js
├── main.routes.js
└── main.css
├── package.json
├── .gitattributes
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
--------------------------------------------------------------------------------
/.meteor/.gitignore:
--------------------------------------------------------------------------------
1 | local
2 |
--------------------------------------------------------------------------------
/.meteor/release:
--------------------------------------------------------------------------------
1 | METEOR@1.4.1.1
2 |
--------------------------------------------------------------------------------
/.meteor/platforms:
--------------------------------------------------------------------------------
1 | server
2 | browser
3 |
--------------------------------------------------------------------------------
/public/img/vue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Akryum/meteor-vue2-example-routing/HEAD/public/img/vue.png
--------------------------------------------------------------------------------
/public/img/droids.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Akryum/meteor-vue2-example-routing/HEAD/public/img/droids.jpg
--------------------------------------------------------------------------------
/public/img/meteor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Akryum/meteor-vue2-example-routing/HEAD/public/img/meteor.png
--------------------------------------------------------------------------------
/server/main.js:
--------------------------------------------------------------------------------
1 | import { Meteor } from 'meteor/meteor';
2 |
3 | Meteor.startup(() => {
4 | // code to run on server at startup
5 | });
6 |
--------------------------------------------------------------------------------
/imports/ui/Page2.vue:
--------------------------------------------------------------------------------
1 |
2 | You are in the second page
5 | You are in the first nested page!
6 |
5 | You are in the second nested page!
6 | Page 2
4 | Nested page A
4 | Nested page B
4 |
You are in the first page
5 | 9 |