{"id":17715761,"url":"https://github.com/caikeal/vue-webapp-tree","last_synced_at":"2026-04-24T11:37:47.374Z","repository":{"id":100669456,"uuid":"92959071","full_name":"caikeal/vue-webapp-tree","owner":"caikeal","description":null,"archived":false,"fork":false,"pushed_at":"2017-06-14T14:58:12.000Z","size":245,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-21T13:43:33.721Z","etag":null,"topics":["axios","template-project","vue","vue-router","vuex","webapp"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/caikeal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-31T15:11:37.000Z","updated_at":"2017-06-05T12:11:12.000Z","dependencies_parsed_at":"2023-05-16T16:15:33.571Z","dependency_job_id":null,"html_url":"https://github.com/caikeal/vue-webapp-tree","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/caikeal/vue-webapp-tree","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caikeal%2Fvue-webapp-tree","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caikeal%2Fvue-webapp-tree/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caikeal%2Fvue-webapp-tree/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caikeal%2Fvue-webapp-tree/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/caikeal","download_url":"https://codeload.github.com/caikeal/vue-webapp-tree/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caikeal%2Fvue-webapp-tree/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32222157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["axios","template-project","vue","vue-router","vuex","webapp"],"created_at":"2024-10-25T12:23:37.339Z","updated_at":"2026-04-24T11:37:47.348Z","avatar_url":"https://github.com/caikeal.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vue-webapp-tree\n\n\u003e A Vue.js template for web app.\n\u003e 😁主要是为了偷懒，每次懒得重新配了\n\n## Use Libs\n+ [mint-ui](https://github.com/ElemeFE/mint-ui)，A vue-component for mobile by Eleme\n\n## Build Setup\n\n``` bash\n# install dependencies\nyarn install\n\n# serve with hot reload at localhost:8080\nyarn run dev\n\n# build for production with minification\nyarn run build\n\n# build for production and view the bundle analyzer report\nyarn run build --report\n\n# run unit tests\nyarn run unit\n\n# run e2e tests\nyarn run e2e\n\n# run all tests\nyarn test\n```\n\n## File List\n\n``` bash\n.\n├── README.md\n├── build\n│   ├── build.js\n│   ├── check-versions.js\n│   ├── dev-client.js\n│   ├── dev-server.js\n│   ├── utils.js\n│   ├── vue-loader.conf.js\n│   ├── webpack.base.conf.js\n│   ├── webpack.dev.conf.js\n│   ├── webpack.prod.conf.js\n│   └── webpack.test.conf.js\n├── config\n│   ├── dev.env.js\n│   ├── index.js(里面存在接口代理配置项，用于本地调试线上接口时的代理)\n│   ├── prod.env.js\n│   └── test.env.js\n├── index.html\n├── package.json\n├── src\n│   ├── App.vue\n│   ├── assets(公共样式)\n│   │   ├── images\n│   │   └── sass\n│   ├── components(自己的组件)\n│   ├── config(业务配置)\n│   │   ├── env.example.js\n│   │   └── env.js(业务配置环境变量)\n│   ├── main.js\n│   ├── router(前端路由)\n│   │   └── index.js\n│   ├── service(业务相关的逻辑)\n│   │   ├── fetch.js\n│   │   └── getData.js(接口地址配置)\n│   ├── store(前端数据共享)\n│   │   ├── action.js\n│   │   ├── getters.js\n│   │   ├── index.js\n│   │   ├── mutation-types.js\n│   │   └── mutations.js\n│   ├── utils(业务无关的工具库)\n│   │   ├── changeTitle.js\n│   │   ├── fixTool.js\n│   │   ├── localstorage.js\n│   │   ├── mathExtends.js\n│   │   ├── uaTest.js\n│   │   └── valid.js\n│   └── view(具体的页面)\n│       └── login\n├── static\n│   ├── img\n│   │   ├── 114.png\n│   │   └── 32.png\n│   └── js\n├── test\n│   ├── e2e\n│   │   ├── custom-assertions\n│   │   ├── nightwatch.conf.js\n│   │   ├── runner.js\n│   │   └── specs\n│   └── unit\n│       ├── index.js\n│       ├── karma.conf.js\n│       └── specs\n└── yarn.lock\n```\n\n## Feature\n+ SSR\n+ Test\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaikeal%2Fvue-webapp-tree","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcaikeal%2Fvue-webapp-tree","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaikeal%2Fvue-webapp-tree/lists"}