Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grasilife/vue-preset
结合 vue-cli3 的 preset 搭建基于 git repo 的前端项目模板,文档请访问https://grasilife.github.io/vue-preset/
https://github.com/grasilife/vue-preset
preset
Last synced: about 1 month ago
JSON representation
结合 vue-cli3 的 preset 搭建基于 git repo 的前端项目模板,文档请访问https://grasilife.github.io/vue-preset/
- Host: GitHub
- URL: https://github.com/grasilife/vue-preset
- Owner: grasilife
- License: other
- Created: 2019-08-26T09:54:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T03:25:45.000Z (about 2 years ago)
- Last Synced: 2024-11-13T17:49:39.965Z (about 1 month ago)
- Topics: preset
- Language: JavaScript
- Homepage:
- Size: 1.92 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vue-preset
结合 vue-cli3 的 preset 搭建基于 git repo 的前端项目模板
## 快速开始
```bash
# 安装 vue-cli 3.0
npm install -g @vue/cli
# 使用vue-preset创建项目
vue create --preset grasilife/vue-preset my-project
# or
vue create --preset direct:https://github.com/grasilife/vue-preset.git my-project --clone# 本地预览
cd my-project && yarn run serve```