Home > Web Front-end > Vue.js > body text

A brief discussion on the project structure of Vue project initialized by vue-cli

青灯夜游
Release: 2020-10-29 17:51:52
forward
1949 people have browsed it

A brief discussion on the project structure of Vue project initialized by vue-cli

Overview

vue-cli is an official command line tool provided by Vue, which can be used to quickly build large single page application. The tool provides out-of-the-box build tool configuration, bringing a modern front-end development process. It only takes a few minutes to create and launch a project with hot reload, static checks on save, and a production-ready build configuration.

Using vue-cli has the following major advantages:

  1. vue-cli is a mature Vue project architecture design that will be updated as the Vue version changes
  2. vue-cli provides a set of local hot-loading test servers
  3. vue-cli integrates a set of packaging and online solutions, which can use webpack or Browserify and other build tools

Installation

Let’s install vue-cli

# 必须全局安装vue--g vue-cli
$ vue -V
Copy after login

Create project

Next, use vue-cli to create a new Vue project

# 项目创建完之后需要执行npm install安装依赖

$ vue init webpack vuedemo$ npm install
Copy after login

The files contained in the created vuedemo folder are as follows:

[index.html]

Index.html is the same as other html files, but generally only an empty root node is defined, and the instance defined in main.js will be hung. Loaded under the root node, the content is filled through vue components. Since all mounting elements will be replaced by the DOM generated by Vue, it is not recommended to directly mount the instance to or Up.

[main.js]

  is the entry file of the Vue application , used to create a new Vue instance and mount this instance under the root node. It can also be used to introduce the Vue plug-in

The 'el' option: provided A DOM element that already exists on the page is used as the mounting target of the Vue instance. Here is the node with the id 'app' in index.html

The 'router' option: Inject the router instance into the Vue root instance , making each of its subcomponents accessible to $router (router instance) and $route (currently activated routing information object)

The 'template' option: Use a string template as the identifier of the Vue instance. It will replace the mounted element, that is, use the component to replace the node with the id 'app' specified by the 'el' option

'components': locally registered components, The option object of was introduced through import earlier. As long as you have the option object, you can register it as a Vue instance here

[App.vue]

 The root component of the project can contain other sub-components to form a component tree. Due to the use of vue-loader, it will write a single file in this format Vue components are converted into JavaScript modules

##  can only contain one child node, which means that there can only be one top-level p (as shown in the figure , the p element with the id 'app' has no sibling nodes), the content will be extracted as a string, will be compiled and used as the

template option

 
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!