├── README.md ├── favicon.ico ├── index.html ├── package.json ├── php └── api │ └── index.php ├── screenshot ├── wifi0s0-1823416679.png ├── wifi0s0-9460455.png └── wifi0s0-947228272.png ├── src ├── components │ ├── head.vue │ ├── header.vue │ └── returnTop.vue ├── css │ └── reset.css ├── filters.js ├── img │ ├── demo.gif │ ├── loading.gif │ ├── nav.png │ ├── old.jpg │ └── returnTop.png ├── js │ └── equ.js ├── main.js ├── scss │ └── home.scss └── vue │ ├── article.vue │ ├── artlist.vue │ └── loading.vue └── webpack.config.js /README.md: -------------------------------------------------------------------------------- 1 | # v2ex_vue 2 | v2ex的vue小试项目 3 | 4 | ## 原版项目 5 | https://github.com/cwsjoker/Cnode-vue-spa 6 | 7 | ## 参考的API 8 | [https://www.v2ex.com/p/7v9TEc53](https://www.v2ex.com/p/7v9TEc53) 9 | 10 | [https://github.com/djyde/V2EX-API](https://github.com/djyde/V2EX-API) 11 | 12 | ## 配置 13 | 把项目下的php/api文件移到到你的PHP环境下 14 | 修改v2ex Vue项目 src/components/vue 目录下组件中的地址为你的PHP后端服地址。 15 | 16 | ## 运行安装 17 | 18 | - npm install 19 | - npm start 20 | 21 | ## 学习交流讨论群 22 | QQ群:571107753 23 | 24 | ## 图片 25 |  26 |  27 |  28 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabpop139/v2ex_vue/b73d04c5b7be4b79067c37e35f75929c9b94a365/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |