├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── screenshot ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── src ├── App.vue ├── assets │ ├── background.jpg │ ├── gg.svg │ ├── style.css │ └── user_defult.png ├── components │ ├── collection.vue │ ├── editpost.vue │ ├── index.vue │ ├── loading.vue │ ├── login.vue │ ├── message.vue │ ├── newpost.vue │ ├── notice.vue │ ├── post-content.vue │ ├── recent-content.vue │ ├── slide.vue │ └── userdetail.vue ├── main.js ├── router │ └── index.js └── store │ ├── modules │ ├── collection-mutation-types.js │ ├── collection.js │ ├── index-mutation-types.js │ ├── index.js │ ├── login-mutation-types.js │ ├── login.js │ ├── message-mutation-types.js │ ├── message.js │ ├── newpost.js │ ├── postcontent-mutation-types.js │ ├── postcontent.js │ ├── userdetail-mutation-types.js │ └── userdetail.js │ └── store.js └── static ├── .gitkeep └── iconfont ├── MaterialIcons-Regular.eot ├── MaterialIcons-Regular.ijmap ├── MaterialIcons-Regular.svg ├── MaterialIcons-Regular.ttf ├── MaterialIcons-Regular.woff ├── MaterialIcons-Regular.woff2 ├── codepoints └── material-icons.css /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/assets/background.jpg -------------------------------------------------------------------------------- /src/assets/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/assets/gg.svg -------------------------------------------------------------------------------- /src/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/assets/style.css -------------------------------------------------------------------------------- /src/assets/user_defult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/assets/user_defult.png -------------------------------------------------------------------------------- /src/components/collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/collection.vue -------------------------------------------------------------------------------- /src/components/editpost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/editpost.vue -------------------------------------------------------------------------------- /src/components/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/index.vue -------------------------------------------------------------------------------- /src/components/loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/loading.vue -------------------------------------------------------------------------------- /src/components/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/login.vue -------------------------------------------------------------------------------- /src/components/message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/message.vue -------------------------------------------------------------------------------- /src/components/newpost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/newpost.vue -------------------------------------------------------------------------------- /src/components/notice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/notice.vue -------------------------------------------------------------------------------- /src/components/post-content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/post-content.vue -------------------------------------------------------------------------------- /src/components/recent-content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/recent-content.vue -------------------------------------------------------------------------------- /src/components/slide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/slide.vue -------------------------------------------------------------------------------- /src/components/userdetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/components/userdetail.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/modules/collection-mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/collection-mutation-types.js -------------------------------------------------------------------------------- /src/store/modules/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/collection.js -------------------------------------------------------------------------------- /src/store/modules/index-mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/index-mutation-types.js -------------------------------------------------------------------------------- /src/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/index.js -------------------------------------------------------------------------------- /src/store/modules/login-mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/login-mutation-types.js -------------------------------------------------------------------------------- /src/store/modules/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/login.js -------------------------------------------------------------------------------- /src/store/modules/message-mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/message-mutation-types.js -------------------------------------------------------------------------------- /src/store/modules/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/message.js -------------------------------------------------------------------------------- /src/store/modules/newpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/newpost.js -------------------------------------------------------------------------------- /src/store/modules/postcontent-mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/postcontent-mutation-types.js -------------------------------------------------------------------------------- /src/store/modules/postcontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/postcontent.js -------------------------------------------------------------------------------- /src/store/modules/userdetail-mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/userdetail-mutation-types.js -------------------------------------------------------------------------------- /src/store/modules/userdetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/modules/userdetail.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/src/store/store.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/iconfont/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /static/iconfont/MaterialIcons-Regular.ijmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/MaterialIcons-Regular.ijmap -------------------------------------------------------------------------------- /static/iconfont/MaterialIcons-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/MaterialIcons-Regular.svg -------------------------------------------------------------------------------- /static/iconfont/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /static/iconfont/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /static/iconfont/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /static/iconfont/codepoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/codepoints -------------------------------------------------------------------------------- /static/iconfont/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spezz07/Vue-CN-Node/HEAD/static/iconfont/material-icons.css --------------------------------------------------------------------------------