In-depth study of vue2.x--Explanation of the h function

In-depth study of vue2.x--Explanation of the h function

vue project. The code written in the template of the .vue file needs to be parsed with the help of the webpack template parser plug-in. When a single .html file introduces a vue file, the vue file also introduces the template parser (the disadvantage is that it is large in size).

Therefore, when we use engineering development projects, we need to introduce vue-template-compile in the package.json file for template parsing.

insert image description here

If there is no template parser, it cannot be parsed, but vue-template-compile can only parse templates in .vue files, and cannot parse templates in .js files:

So when we write this, it won't work.

insert image description here

insert image description here

Why can't it be parsed? Because the vue file introduced by the main.js file does not have a template parser

insert image description here

insert image description here

vue.runtime.common.js is a .vue file without a template parser, and vue.js is a vue file with a template parser

insert image description here

If we import the vue.js file with the template parser in main.js, we can parse the template

insert image description here

insert image description here

Why is the vue.js file without template parser imported by default?
Because of the volume issue:

insert image description here

Solution,

Use the official render function. He can call the introduced vue-template-compile through the h function, that is, the ninth line of code is equivalent to the eleventh and twelfth lines plus the loader template parser.

insert image description here

Summarize:

insert image description here

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of how to use $props, $attrs and $listeners in Vue

<<:  Implementation of remote Linux development using vscode

>>:  MySQL derived table (Derived Table) simple usage example analysis

Recommend

Write your HTML like this to make your code more compatible

For example, users who need screen reading softwar...

Tips on MySQL query cache

Table of contents Preface Introduction to QueryCa...

Detailed explanation of how to write mysql not equal to null and equal to null

1. Table structure 2. Table data 3. The query tea...

vue2.x configuration from vue.config.js to project optimization

Table of contents Preface vue.config.js configura...

JavaScript to achieve a simple magnifying glass effect

There is a picture in a big box. When you put the...

Using nginx + fastcgi to implement image recognition server

background A specific device is used to perform i...

Detailed explanation of Vue3.0 + TypeScript + Vite first experience

Table of contents Project Creation Project Struct...

How to support full Unicode in MySQL/MariaDB

Table of contents Introduction to utf8mb4 UTF8 by...

Web design tips on form input boxes

This article lists some tips and codes about form...

Introduction to fuzzy query method using instr in mysql

Using the internal function instr in MySQL can re...

MySQL controls the number of attempts to enter incorrect passwords

1. How to monitor MySQL deadlocks in production e...

Tips and precautions for using MySQL index

1. The role of index In general application syste...