This article is a study note made by referring to the video of station B of Young Village chief. Those of you who are interested can click on the portal to see the original video.

This article can learn:

  1. Create projects using vite tools

Create a Vite2 + Vue3.0 project

  • Run the NPM command

    npm init @vitejs/app`
    Copy the code
  • You will then be asked to select some configurations

    1. Project name: Your project name, that is, the folder name
    2. Select a template: Select a template
  • Finally, start the project

    cd vite-project
    npm install 
    npm run dev
    Copy the code

This is how to create a VUE project using vite tools.