├── .babelrc ├── .editorconfig ├── .eslintignore ├── .gitignore ├── LICENSE ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── api.js ├── assets │ ├── logo.png │ └── reset.css ├── components │ ├── vConfirm.vue │ ├── vHeader.vue │ ├── vReplyList.vue │ ├── vSidebar.vue │ └── vUserPanel.vue ├── filters.js ├── main.js ├── router.js ├── utils.js └── views │ ├── vAbout.vue │ ├── vList.vue │ ├── vLogin.vue │ ├── vMessage.vue │ ├── vNewTopic.vue │ ├── vPerInfo.vue │ └── vTopic.vue └── static ├── .gitkeep ├── common.css └── reset.css /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/.eslintignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/api.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/assets/reset.css -------------------------------------------------------------------------------- /src/components/vConfirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/components/vConfirm.vue -------------------------------------------------------------------------------- /src/components/vHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/components/vHeader.vue -------------------------------------------------------------------------------- /src/components/vReplyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/components/vReplyList.vue -------------------------------------------------------------------------------- /src/components/vSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/components/vSidebar.vue -------------------------------------------------------------------------------- /src/components/vUserPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/components/vUserPanel.vue -------------------------------------------------------------------------------- /src/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/filters.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/router.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/views/vAbout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/views/vAbout.vue -------------------------------------------------------------------------------- /src/views/vList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/views/vList.vue -------------------------------------------------------------------------------- /src/views/vLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/views/vLogin.vue -------------------------------------------------------------------------------- /src/views/vMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/views/vMessage.vue -------------------------------------------------------------------------------- /src/views/vNewTopic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/views/vNewTopic.vue -------------------------------------------------------------------------------- /src/views/vPerInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/views/vPerInfo.vue -------------------------------------------------------------------------------- /src/views/vTopic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/src/views/vTopic.vue -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/static/common.css -------------------------------------------------------------------------------- /static/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChehe/vue_cnode/HEAD/static/reset.css --------------------------------------------------------------------------------