├── .meteor ├── .gitignore ├── release ├── platforms ├── .id ├── .finished-upgraders ├── packages └── versions ├── .vueignore ├── .postcssrc ├── .gitignore ├── src ├── imports │ ├── ui │ │ ├── style │ │ │ ├── colors.scss │ │ │ ├── colors.styl │ │ │ ├── vars.scss │ │ │ ├── vars.styl │ │ │ ├── colors.less │ │ │ ├── imports.less │ │ │ ├── transitions.less │ │ │ └── main.less │ │ ├── App.vue │ │ ├── App.html │ │ ├── NotFound.vue │ │ ├── App.js │ │ ├── Async.vue │ │ ├── Items.vue │ │ ├── Home.vue │ │ ├── Pokemon.vue │ │ ├── Apollo.vue │ │ ├── Cart.vue │ │ ├── GoogleMap.vue │ │ ├── About.vue │ │ ├── AppNav.vue │ │ ├── NotesComponents.vue │ │ ├── NotesComputed.vue │ │ └── Notes.vue │ ├── supply │ │ ├── index.js │ │ ├── base.js │ │ └── Items.js │ ├── filters.js │ ├── store │ │ ├── index.js │ │ ├── items │ │ │ └── index.js │ │ └── layout │ │ │ └── index.js │ ├── client.js │ ├── api │ │ ├── collections.js │ │ ├── publications.js │ │ ├── methods.js │ │ └── apollo.js │ ├── plugins.js │ ├── routes.js │ ├── app.js │ └── server.js ├── index.js └── index.html ├── .babelrc ├── .github └── FUNDING.yml ├── public └── vue+meteor.png ├── README.md └── package.json /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.vueignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@2.7.3 2 | -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /packages 3 | .cache 4 | -------------------------------------------------------------------------------- /src/imports/ui/style/colors.scss: -------------------------------------------------------------------------------- 1 | $app-color: #40b883; 2 | -------------------------------------------------------------------------------- /src/imports/ui/style/colors.styl: -------------------------------------------------------------------------------- 1 | $app-color = #40b883; 2 | -------------------------------------------------------------------------------- /src/imports/ui/style/vars.scss: -------------------------------------------------------------------------------- 1 | @import './colors'; 2 | -------------------------------------------------------------------------------- /src/imports/ui/style/vars.styl: -------------------------------------------------------------------------------- 1 | @import './colors.styl' 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "transform-vue-jsx" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: Akryum 4 | -------------------------------------------------------------------------------- /src/imports/ui/style/colors.less: -------------------------------------------------------------------------------- 1 | @app-color: #40b883; 2 | @page-background: darken(white, 2%); 3 | -------------------------------------------------------------------------------- /public/vue+meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meteor-vue/vue-meteor-demo/HEAD/public/vue+meteor.png -------------------------------------------------------------------------------- /src/imports/supply/index.js: -------------------------------------------------------------------------------- 1 | import { register } from 'vue-supply' 2 | 3 | import Items from './Items' 4 | register('Items', Items) 5 | -------------------------------------------------------------------------------- /src/imports/filters.js: -------------------------------------------------------------------------------- 1 | import moment from 'moment' 2 | 3 | export function date (value) { 4 | return moment(value).format('DD/MM/YYYY') 5 | } 6 | -------------------------------------------------------------------------------- /src/imports/ui/App.vue: -------------------------------------------------------------------------------- 1 |