├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── server ├── api.js ├── db.js └── index.js ├── src ├── assets │ └── logo.png ├── components │ ├── comment.vue │ ├── commonFooter.vue │ ├── commonHeader.vue │ ├── commonLayout.vue │ ├── list.vue │ ├── list_article.vue │ ├── list_content.vue │ ├── list_home.vue │ └── message.vue ├── main.js ├── pages │ ├── about.vue │ ├── admin │ │ ├── articleEdit.vue │ │ ├── articleList.vue │ │ └── demoEdit.vue │ ├── archives.vue │ ├── categories.vue │ ├── collections.vue │ ├── demo.vue │ ├── detail.vue │ ├── home.vue │ ├── signin.vue │ └── visiter │ │ └── index.vue ├── router │ └── index.js └── store │ └── index.js ├── static ├── .gitkeep ├── css │ ├── font │ │ ├── demo.css │ │ ├── demo_fontclass.html │ │ ├── demo_symbol.html │ │ ├── demo_unicode.html │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.js │ │ ├── iconfont.js.gz │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── normalize.css │ └── public.css ├── img │ ├── avatar.png │ ├── bg.jpg │ ├── bg_admin.jpg │ ├── p1.png │ └── tao.ico ├── js │ ├── animation.js │ ├── public.js │ └── tween.js └── upload │ └── avatar │ ├── 1536199860345.png │ └── 1536199928211.png └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── jest.conf.js ├── setup.js └── specs └── HelloWorld.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/config/test.env.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/package.json -------------------------------------------------------------------------------- /server/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/server/api.js -------------------------------------------------------------------------------- /server/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/server/db.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/server/index.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/comment.vue -------------------------------------------------------------------------------- /src/components/commonFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/commonFooter.vue -------------------------------------------------------------------------------- /src/components/commonHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/commonHeader.vue -------------------------------------------------------------------------------- /src/components/commonLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/commonLayout.vue -------------------------------------------------------------------------------- /src/components/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/list.vue -------------------------------------------------------------------------------- /src/components/list_article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/list_article.vue -------------------------------------------------------------------------------- /src/components/list_content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/list_content.vue -------------------------------------------------------------------------------- /src/components/list_home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/list_home.vue -------------------------------------------------------------------------------- /src/components/message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/components/message.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/about.vue -------------------------------------------------------------------------------- /src/pages/admin/articleEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/admin/articleEdit.vue -------------------------------------------------------------------------------- /src/pages/admin/articleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/admin/articleList.vue -------------------------------------------------------------------------------- /src/pages/admin/demoEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/admin/demoEdit.vue -------------------------------------------------------------------------------- /src/pages/archives.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/archives.vue -------------------------------------------------------------------------------- /src/pages/categories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/categories.vue -------------------------------------------------------------------------------- /src/pages/collections.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/collections.vue -------------------------------------------------------------------------------- /src/pages/demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/demo.vue -------------------------------------------------------------------------------- /src/pages/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/detail.vue -------------------------------------------------------------------------------- /src/pages/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/home.vue -------------------------------------------------------------------------------- /src/pages/signin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/signin.vue -------------------------------------------------------------------------------- /src/pages/visiter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/pages/visiter/index.vue -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/src/store/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/font/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/demo.css -------------------------------------------------------------------------------- /static/css/font/demo_fontclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/demo_fontclass.html -------------------------------------------------------------------------------- /static/css/font/demo_symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/demo_symbol.html -------------------------------------------------------------------------------- /static/css/font/demo_unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/demo_unicode.html -------------------------------------------------------------------------------- /static/css/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/iconfont.css -------------------------------------------------------------------------------- /static/css/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/iconfont.eot -------------------------------------------------------------------------------- /static/css/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/iconfont.js -------------------------------------------------------------------------------- /static/css/font/iconfont.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/iconfont.js.gz -------------------------------------------------------------------------------- /static/css/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/iconfont.svg -------------------------------------------------------------------------------- /static/css/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/iconfont.ttf -------------------------------------------------------------------------------- /static/css/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/font/iconfont.woff -------------------------------------------------------------------------------- /static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/normalize.css -------------------------------------------------------------------------------- /static/css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/css/public.css -------------------------------------------------------------------------------- /static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/img/avatar.png -------------------------------------------------------------------------------- /static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/img/bg.jpg -------------------------------------------------------------------------------- /static/img/bg_admin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/img/bg_admin.jpg -------------------------------------------------------------------------------- /static/img/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/img/p1.png -------------------------------------------------------------------------------- /static/img/tao.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/img/tao.ico -------------------------------------------------------------------------------- /static/js/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/js/animation.js -------------------------------------------------------------------------------- /static/js/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/js/public.js -------------------------------------------------------------------------------- /static/js/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/js/tween.js -------------------------------------------------------------------------------- /static/upload/avatar/1536199860345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/upload/avatar/1536199860345.png -------------------------------------------------------------------------------- /static/upload/avatar/1536199928211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/static/upload/avatar/1536199928211.png -------------------------------------------------------------------------------- /test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/test/e2e/runner.js -------------------------------------------------------------------------------- /test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/test/e2e/specs/test.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/test/unit/jest.conf.js -------------------------------------------------------------------------------- /test/unit/setup.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | Vue.config.productionTip = false 4 | -------------------------------------------------------------------------------- /test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestRenekton/taoLand/HEAD/test/unit/specs/HelloWorld.spec.js --------------------------------------------------------------------------------