Commit b0c7185a by zhuxichen

chore:update

parent 0412f9bb
# vue-project # vue-project
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
## Customize configuration
See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup ## Project Setup
```sh ```sh
npm install yarn install
``` ```
### Compile and Hot-Reload for Development ### Compile and Hot-Reload for Development
```sh ```sh
npm run dev yarn dev
``` ```
### Type-Check, Compile and Minify for Production ### Type-Check, Compile and Minify for Production
```sh ```sh
npm run build yarn build
``` ```
### Run Unit Tests with [Vitest](https://vitest.dev/) ### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh ```sh
npm run test:unit yarn test:unit
``` ```
### Run End-to-End Tests with [Cypress](https://www.cypress.io/) ### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
```sh ```sh
npm run test:e2e:dev yarn test:e2e:dev
``` ```
This runs the end-to-end tests against the Vite development server. This runs the end-to-end tests against the Vite development server.
...@@ -50,12 +36,12 @@ It is much faster than the production build. ...@@ -50,12 +36,12 @@ 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): But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):
```sh ```sh
npm run build yarn build
npm run test:e2e yarn test:e2e
``` ```
### Lint with [ESLint](https://eslint.org/) ### Lint with [ESLint](https://eslint.org/)
```sh ```sh
npm run lint yarn lint
``` ```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment