├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── public └── favicon.ico ├── server.js ├── src ├── App.vue ├── app.js ├── assets │ └── favicon.ico ├── client-entry.js ├── components │ ├── CardList.vue │ ├── GoHistory.vue │ ├── ItemList.vue │ ├── Spinner.vue │ └── paging.js ├── filters │ └── index.js ├── router │ └── index.js ├── scss │ ├── global.scss │ ├── nprogress.scss │ └── variable.scss ├── server-entry.js ├── store │ ├── api.js │ ├── firebase-client.js │ ├── firebase-server.js │ ├── index.js │ └── menus.js └── views │ ├── AuthorPost.vue │ ├── CreateListView.js │ ├── LocationPost.vue │ └── Post.vue ├── static └── .gitkeep └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/server.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/app.js -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/client-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/client-entry.js -------------------------------------------------------------------------------- /src/components/CardList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/components/CardList.vue -------------------------------------------------------------------------------- /src/components/GoHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/components/GoHistory.vue -------------------------------------------------------------------------------- /src/components/ItemList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/components/ItemList.vue -------------------------------------------------------------------------------- /src/components/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/components/Spinner.vue -------------------------------------------------------------------------------- /src/components/paging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/components/paging.js -------------------------------------------------------------------------------- /src/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/filters/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/scss/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/scss/global.scss -------------------------------------------------------------------------------- /src/scss/nprogress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/scss/nprogress.scss -------------------------------------------------------------------------------- /src/scss/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/scss/variable.scss -------------------------------------------------------------------------------- /src/server-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/server-entry.js -------------------------------------------------------------------------------- /src/store/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/store/api.js -------------------------------------------------------------------------------- /src/store/firebase-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/store/firebase-client.js -------------------------------------------------------------------------------- /src/store/firebase-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/store/firebase-server.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/store/menus.js -------------------------------------------------------------------------------- /src/views/AuthorPost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/views/AuthorPost.vue -------------------------------------------------------------------------------- /src/views/CreateListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/views/CreateListView.js -------------------------------------------------------------------------------- /src/views/LocationPost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/views/LocationPost.vue -------------------------------------------------------------------------------- /src/views/Post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/src/views/Post.vue -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beauty-enjoy/beauty/HEAD/yarn.lock --------------------------------------------------------------------------------