├── LICENSE ├── README.md ├── docs └── index.html ├── index.js └── package.json /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Joenix 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | logo 4 | 5 |

6 | 7 |

8 | 9 | download 10 | 11 | 12 | 13 | npm 14 | 15 | 16 | 17 | github 18 | 19 | 20 | 21 | github 22 | 23 |

24 | 25 | # vue-scaff 26 | 27 | A FAST CONFIGURABLE VUE SCAFFOLD 28 | 29 | ## core team 30 | 31 | | Member | Github | NPM | 32 | | ---------------------------- | ------------------------------------------ | -------------------------------------------- | 33 | | [Joenix](http://joenix.com/) | [Github](https://github.com/joenix) | [NPM](https://www.npmjs.com/~joenix) | 34 | | Anko | [Github](https://github.com/AtlantaCaesar) | [NPM](https://www.npmjs.com/~bald-developer) | 35 | | Caption Wang | [Github](https://github.com/seassol) | [NPM](https://www.npmjs.com/~captionwang) | 36 | | QH Huang | [Github](https://github.com/qhhuang) | [NPM](https://www.npmjs.com/~qhhuang) | 37 | 38 | ## docs 39 | 40 | See [https://vue-scaff.com/](https://vue-scaff.com/) 41 | 42 | ## repo 43 | 44 | Group See [Github Vue-Scaff](https://github.com/vue-scaff) 45 | 46 | | vite | vue-cli | electron | uni-app | 47 | | ------------------------------------------------ | ---------------------------------------------- | --- | --- | 48 | | [vue-scaff-v3-vite](https://github.com/vue-scaff/vue-scaff-v3-vite) | [vue-scaff-v3-cli](https://github.com/vue-scaff/vue-scaff-v3-cli) | [vue-scaff-v3-electron](https://github.com/vue-scaff/vue-scaff-v3-electron) | [vue-scaff-v3-uni](https://github.com/vue-scaff/vue-scaff-v3-uni) | 49 | 50 | ### get started 51 | 52 | ```sh 53 | # yarn 54 | yarn create vue-scaff project-name 55 | 56 | # npm 57 | npm create vue-scaff project-name 58 | 59 | # npx 60 | npx create-vue-scaff project-name 61 | ``` 62 | 63 | ### demo 64 | 65 | | vite | vue-cli | 66 | | ------------------------------------------------ | ---------------------------------------------- | 67 | | [vite.vue-scaff.com](https://vite.vue-scaff.com) | [cli.vue-scaff.com](https://cli.vue-scaff.com) | 68 | 69 | ### version 2.x 70 | 71 | | H5 | Admin | Electron | 72 | | --------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | 73 | | [preview](http://demo.vue-scaff.com) | [preview](http://admin.vue-scaff.com) | No preview | 74 | | [download](https://github.com/vue-scaff/vue-scaff-demo/archive/vue-scaff-demo-v1.0.zip) | [download](https://github.com/vue-scaff/vue-scaff-admin/archive/vue-scaff-admin-v1.0.zip) | [download](https://github.com/vue-scaff/vue-scaff-electron/archive/vue-scaff-electron.zip) | 75 | 76 | ## license 77 | 78 | [MIT](https://img.shields.io/badge/license-MIT-738bd7) 79 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vue Scaff 8 | 9 | 10 | 11 | Link 2 Website 12 | 13 | 14 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hi there! 😜 3 | * I'm Joenix, a web developer. And a father of a daughter 4 | * ========== ========== ========== ========== ========== 5 | * It took me some effort to write `vue-scaff` 6 | * I hope it will bring a little bit convenience for u 7 | * ========== ========== ========== ========== ========== 8 | */ 9 | console.log(`🅅🅄🄴 ­­🅂🄲🄰🄵🄵`); 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-scaff", 3 | "version": "3.5.21", 4 | "description": "Guides for vue-scaff", 5 | "keywords": [ 6 | "vue", 7 | "scaff", 8 | "vue-scaff" 9 | ], 10 | "author": "joenix", 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/joenix/vue-scaff.git" 14 | }, 15 | "homepage": "https://vue-scaff.com", 16 | "license": "MIT" 17 | } 18 | --------------------------------------------------------------------------------