1. What is scaffolding?1. Vue CLI Vue CLI is a complete system for rapid development based on Vue.js, providing:
Vue CLI is committed to standardizing the basic tools in the Vue ecosystem. It ensures that various build tools can be smoothly connected based on intelligent default configurations, so that you can focus on writing applications instead of spending days worrying about configuration issues. At the same time, it also provides flexibility for each tool to adjust the configuration without ejecting 2. Features:
3. Installation method Note: On the premise of having npm tool Open the terminal, enter the cmd command, and download the global environment (it is recommended to download the global environment) npm install -g @vue/cli 4. Check the version instructions after downloading vue --version 5. Upgrade version npm update -g @vue/cli 2. Project CreationCreate a project vue create myapp Make choices according to the prompts Step 1: Select the installation method - Custom installation Default ([Vue 2] babel, eslint) Default (Vue 3 Preview) ([Vue 3] babel, eslint) Manually select features Step 2: Select the module to install ◉ Choose Vue version — Select the view version ◉ Babel — Parsing JavaScript ◯ TypeScript — Parsing ts ◉ Progressive Web App (PWA) Support ◉ Router ◉ Vuex — State Management ◉ CSS Pre-processors ◉ Linter / Formatter — Code formatting ◉ Unit Testing — Testing plugin ◉ E2E Testing — Testing plugin Step 3: Select routing mode (optional and adjustable later) history — http://localhost:81/ Backend support hash — http://localhost:81/#/ No backend support required Step 4: Choose how to process CSS (select scss in node environment here) sass/scss - node Step 5: Code verification rules - Standard rules: Standard ESLint with error prevention only ESLint + Airbnb config ESLint + Standard config ESLint + Prettier Step 6: When to verify: When saving ◉ Lint on save ◯ Lint and fix on commit Step 7: Select test module: Optional Step 8: End-to-end test solution: default Step 9: Project configuration file package.json Step 10: Do you want to save the current configuration? Wait for the creation to complete the project architecture 3. Project Catalog Introduction1. Root Directory
2.src directory
SummarizeThis is the end of this article about the project creation method of Vue scaffolding learning. For more relevant Vue scaffolding project creation content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to Customize Bash Command Prompt in Linux
>>: Complete steps for uninstalling MySQL database
1. Edit the docker.service file vi /usr/lib/syste...
Over a period of time, I found that many people d...
Since I started working on Vulhub in 2017, I have...
This article introduces the method of using CSS3 ...
Rendering If you want to achieve the effect shown...
Note: You cannot use scoped animations! ! ! ! via...
Table of contents 1. Prepare the springboot proje...
<body> <div id="root"> <...
During development, I encountered such a requireme...
Table of contents Problem description: Installati...
Previously, the images we used were all pulled fr...
In the previous article, we explained how nginx r...
Table of contents 1. Original Definition 2. JS op...
0. Introduction What is the ibdata1 file? ibdata1...
To draw a table in HTML, use the table tag tr me...