├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── Dockerfile ├── README.md ├── admin.html ├── config.js ├── index.html ├── mobile-preview.png ├── package.json ├── preview.gif ├── server ├── app.js ├── config.js ├── public │ ├── admin.html │ ├── favicon.ico │ ├── index.html │ └── static │ │ ├── 1.79353c37594f89aecf92.js │ │ ├── 2.9db3fb72f502d443e82a.js │ │ ├── 3.2b2a45e3e0d3d1142899.js │ │ ├── 4.80eddd4ad15fe244951b.js │ │ ├── 5.7fb4dcff64a73abee0a7.js │ │ └── app.js ├── routes │ ├── api.js │ └── imagebox.js └── util.js ├── src ├── admin.js ├── assets │ ├── data.json │ └── zhi.css ├── index.js ├── router │ ├── admin.js │ └── index.js ├── util.js ├── views │ ├── admin.vue │ ├── admin │ │ ├── dashboard.vue │ │ ├── faq.vue │ │ ├── list.vue │ │ ├── login.vue │ │ └── setting.vue │ ├── app.vue │ └── index │ │ ├── about.vue │ │ ├── article.vue │ │ ├── articles.vue │ │ ├── card.vue │ │ ├── list.vue │ │ ├── news.vue │ │ ├── themeList.vue │ │ └── themes.vue └── vuex │ ├── admin │ ├── action.js │ └── store.js │ └── index │ ├── action.js │ └── store.js └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── index.js ├── karma.conf.js └── specs └── Hello.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/README.md -------------------------------------------------------------------------------- /admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/admin.html -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/index.html -------------------------------------------------------------------------------- /mobile-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/mobile-preview.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/preview.gif -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/config.js -------------------------------------------------------------------------------- /server/public/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/admin.html -------------------------------------------------------------------------------- /server/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/favicon.ico -------------------------------------------------------------------------------- /server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/index.html -------------------------------------------------------------------------------- /server/public/static/1.79353c37594f89aecf92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/static/1.79353c37594f89aecf92.js -------------------------------------------------------------------------------- /server/public/static/2.9db3fb72f502d443e82a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/static/2.9db3fb72f502d443e82a.js -------------------------------------------------------------------------------- /server/public/static/3.2b2a45e3e0d3d1142899.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/static/3.2b2a45e3e0d3d1142899.js -------------------------------------------------------------------------------- /server/public/static/4.80eddd4ad15fe244951b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/static/4.80eddd4ad15fe244951b.js -------------------------------------------------------------------------------- /server/public/static/5.7fb4dcff64a73abee0a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/static/5.7fb4dcff64a73abee0a7.js -------------------------------------------------------------------------------- /server/public/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/public/static/app.js -------------------------------------------------------------------------------- /server/routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/routes/api.js -------------------------------------------------------------------------------- /server/routes/imagebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/routes/imagebox.js -------------------------------------------------------------------------------- /server/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/server/util.js -------------------------------------------------------------------------------- /src/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/admin.js -------------------------------------------------------------------------------- /src/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/assets/data.json -------------------------------------------------------------------------------- /src/assets/zhi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/assets/zhi.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/index.js -------------------------------------------------------------------------------- /src/router/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/router/admin.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/util.js -------------------------------------------------------------------------------- /src/views/admin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/admin.vue -------------------------------------------------------------------------------- /src/views/admin/dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/admin/dashboard.vue -------------------------------------------------------------------------------- /src/views/admin/faq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/admin/faq.vue -------------------------------------------------------------------------------- /src/views/admin/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/admin/list.vue -------------------------------------------------------------------------------- /src/views/admin/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/admin/login.vue -------------------------------------------------------------------------------- /src/views/admin/setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/admin/setting.vue -------------------------------------------------------------------------------- /src/views/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/app.vue -------------------------------------------------------------------------------- /src/views/index/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/about.vue -------------------------------------------------------------------------------- /src/views/index/article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/article.vue -------------------------------------------------------------------------------- /src/views/index/articles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/articles.vue -------------------------------------------------------------------------------- /src/views/index/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/card.vue -------------------------------------------------------------------------------- /src/views/index/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/list.vue -------------------------------------------------------------------------------- /src/views/index/news.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/news.vue -------------------------------------------------------------------------------- /src/views/index/themeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/themeList.vue -------------------------------------------------------------------------------- /src/views/index/themes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/views/index/themes.vue -------------------------------------------------------------------------------- /src/vuex/admin/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/vuex/admin/action.js -------------------------------------------------------------------------------- /src/vuex/admin/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/vuex/admin/store.js -------------------------------------------------------------------------------- /src/vuex/index/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/vuex/index/action.js -------------------------------------------------------------------------------- /src/vuex/index/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/src/vuex/index/store.js -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/unit/karma.conf.js -------------------------------------------------------------------------------- /test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilongjw/vue-zhihu-daily/HEAD/test/unit/specs/Hello.spec.js --------------------------------------------------------------------------------