Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wei-zone/vue3-quick-start
a better vue3 start project
https://github.com/wei-zone/vue3-quick-start
vite vue-init-template vue3 vue3-init-template vue3-start vue3-template
Last synced: about 8 hours ago
JSON representation
a better vue3 start project
- Host: GitHub
- URL: https://github.com/wei-zone/vue3-quick-start
- Owner: wei-zone
- Created: 2023-07-07T12:52:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-12T15:49:39.000Z (4 months ago)
- Last Synced: 2024-09-15T11:18:15.632Z (about 2 months ago)
- Topics: vite, vue-init-template, vue3, vue3-init-template, vue3-start, vue3-template
- Language: TypeScript
- Homepage: https://wei-zone.github.io/vue3-quick-start/
- Size: 1.47 MB
- Stars: 21
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- fucking-awesome-vite - vue3-quick-start - Building an engineered Vue 3 project, integrated with `Vite` + `Vue3` + `TypeScript` + `ESLint` + `Prettier` + `Commitizen` + `Husky` + `LintStaged` + `CommitLint` + `AutoImport` + `ReleaseIt`. (Get Started / Templates)
- awesome-vite - vue3-quick-start - Building an engineered Vue 3 project, integrated with `Vite` + `Vue3` + `TypeScript` + `ESLint` + `Prettier` + `Commitizen` + `Husky` + `LintStaged` + `CommitLint` + `AutoImport` + `ReleaseIt`. (Get Started / Templates)
README
# vue3-quick-start
English | [简体中文](https://github.com/wforguo/vue3-quick-start/blob/master/readme.zh-CN.md)
This template should help get you started developing with Vue 3 in Vite.
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[start guide](https://forguo.cn/f2e/%E5%B7%A5%E7%A8%8B%E5%8C%96/Vue3%E5%89%8D%E7%AB%AF%E5%B7%A5%E7%A8%8B%E5%8C%96%E9%A1%B9%E7%9B%AE%E6%90%AD%E5%BB%BA.html)
## vite config
See [Vite Configuration Reference](https://vitejs.dev/config/).
## start
```sh
pnpm install
```### Compile and Hot-Reload for Development
```sh
pnpm dev
```### Type-Check, Compile and Minify for Production
```sh
pnpm build
```### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
pnpm test:unit
```### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
```sh
pnpm test:e2e:dev
```This runs the end-to-end tests against the Vite development server. It is much faster than the production build.
But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):
```sh
pnpm build
pnpm test:e2e
```### Lint with [ESLint](https://eslint.org/)
```sh
pnpm lint
```## debug
[eruda](https://github.com/liriliri/eruda)
Opening method [modify variables or opening method as needed]
Add after link: `?debug=true`
such as: [http://127.0.0.1:5000/?debug=true](http://127.0.0.1:5000/?debug=true)