├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── common └── utils.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ └── README.md ├── components │ ├── About │ │ ├── About.vue │ │ └── index.js │ ├── Home │ │ ├── Home.vue │ │ └── index.js │ ├── Main │ │ ├── Main.vue │ │ └── index.js │ └── Record │ │ ├── Record.vue │ │ └── index.js ├── i18n │ ├── en.js │ └── zh.js ├── main.js └── router │ └── index.js └── static ├── .gitkeep └── logo.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/README.md -------------------------------------------------------------------------------- /common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/common/utils.js -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/README.md: -------------------------------------------------------------------------------- 1 | 静态资源存放目录 -------------------------------------------------------------------------------- /src/components/About/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/About/About.vue -------------------------------------------------------------------------------- /src/components/About/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/About/index.js -------------------------------------------------------------------------------- /src/components/Home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/Home/Home.vue -------------------------------------------------------------------------------- /src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/Home/index.js -------------------------------------------------------------------------------- /src/components/Main/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/Main/Main.vue -------------------------------------------------------------------------------- /src/components/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/Main/index.js -------------------------------------------------------------------------------- /src/components/Record/Record.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/Record/Record.vue -------------------------------------------------------------------------------- /src/components/Record/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/components/Record/index.js -------------------------------------------------------------------------------- /src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/i18n/en.js -------------------------------------------------------------------------------- /src/i18n/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/i18n/zh.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/src/router/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlackHole1/Fecm/HEAD/static/logo.png --------------------------------------------------------------------------------