├── .gitignore ├── README.md ├── babel.config.js ├── docs ├── 404.html ├── css │ ├── E8820S.ef37b729.css │ ├── E8820V2.b7943454.css │ ├── FWR310V4.38f22748.css │ ├── Index.aae1734e.css │ ├── MW300RV6.6f524cf1.css │ ├── R4A.4b66539b.css │ ├── WDR7300.18a6f506.css │ ├── WDR8620.937195e5.css │ ├── Y1.a5db0b86.css │ └── app.4eefdf34.css ├── favicon.ico ├── index.html └── js │ ├── E8820S.c18d59a0.js │ ├── E8820S~E8820V2~FWR310V4~MW300RV6~R4A~WDR7300~WDR8620~Y1.b25c2b02.js │ ├── E8820V2.f9ac928a.js │ ├── FWR310V4.a0bba563.js │ ├── Index.2ad8ebc6.js │ ├── MW300RV6.b937cdac.js │ ├── R4A.e9afd1b2.js │ ├── WDR7300.fcf0a798.js │ ├── WDR8620.1a3e89da.js │ ├── Y1.87d6ed76.js │ ├── app.f6068094.js │ └── chunk-vendors.59287c6b.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ └── logo.png ├── main.js ├── router │ └── index.js └── views │ ├── Index │ └── index.vue │ ├── NEWIFI │ └── Y1 │ │ └── index.vue │ ├── TPLINK │ ├── FWR310V4 │ │ └── index.vue │ ├── MW300RV6 │ │ └── index.vue │ ├── WDR7300 │ │ └── index.vue │ └── WDR8620 │ │ └── index.vue │ ├── XIAOMI │ └── R4A │ │ └── index.vue │ └── ZTE │ ├── E8820S │ ├── 8820s-eeprom.bin │ ├── 8820s_eeprom_b70gs_yh_nomac.bin │ ├── E8820s原厂备份编程器固件.7z │ ├── gen_eeprom.py │ └── index.vue │ └── E8820V2 │ └── index.vue ├── vue.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | 6 | # local env files 7 | .env.local 8 | .env.*.local 9 | 10 | # Log files 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | pnpm-debug.log* 15 | 16 | # Editor directories and files 17 | .idea 18 | .vscode 19 | *.suo 20 | *.ntvs* 21 | *.njsproj 22 | *.sln 23 | *.sw? 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # router 2 | 3 | ## Project setup 4 | ``` 5 | yarn install 6 | ``` 7 | 8 | ### Compiles and hot-reloads for development 9 | ``` 10 | yarn serve 11 | ``` 12 | 13 | ### Compiles and minifies for production 14 | ``` 15 | yarn build 16 | ``` 17 | 18 | ### Lints and fixes files 19 | ``` 20 | yarn lint 21 | ``` 22 | 23 | ### Customize configuration 24 | See [Configuration Reference](https://cli.vuejs.org/config/). 25 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- 1 |