Table of Contents
h function
JSX
Template vs JSX
Summary
Home Web Front-end Vue.js An article explaining in detail how to use JSX in vue3

An article explaining in detail how to use JSX in vue3

Nov 25, 2022 pm 09:01 PM
vue vue3 jsx

How to use JSX in

vue? The following article will introduce to you how to use JSX in vue3. I hope it will be helpful to you!

An article explaining in detail how to use JSX in vue3

In most cases, Vue recommends using template <template> syntax to create applications.

In Vue 3 project development, template is the default writing method of Vue 3. Although the template looks like HTML, Vue actually parses the template into a render function. After that, the virtual DOM is returned through the render function when the component is running. [Learning video sharing: vue video tutorial, web front-end video]

However, in some usage scenarios, we really need to use JavaScript’s complete programming capabilities . At this time Rendering function comes in handy.

h function

Vue provides a h() function for creating vnodes virtual dom. The following example: How to use

1

2

3

4

5

6

7

8

9

import { h } from &#39;vue&#39;

 

const vnode = h(

  &#39;div&#39;, // type

  { id: &#39;foo&#39;, class: &#39;bar&#39; }, // props

  [

    /* children */

  ]

)

Copy after login

in components?

Previously when the composite API was used with templates, the return value of the setup() hook was used to expose data to the template. But when using h(), the setup() hook returns the rendering function:

1

2

3

4

5

6

7

8

9

10

11

12

13

import { ref, h } from &#39;vue&#39;

 

export default {

  props: {

    /* ... */

  },

  setup(props) {

    const count = ref(1)

 

    // 返回渲染函数

    return () => h(&#39;div&#39;, props.msg + count.value)

  }

}

Copy after login

The handwritten h function can be Handle more dynamic scenes. But if it is a complex scene, the h function is very cumbersome to write, and you need to convert all attributes into objects yourself. And when components are nested, the objects will become very complex. However, because the h function also returns virtual DOM, is there a more convenient way to write the h function? The answer is yes, the way is JSX.

JSX

JSX is an XML-like extension of JavaScript. With it, we can create vnodes in a simple way:

1

const vnode = <div id="app">hello</div>

Copy after login

This The syntax for writing HTML in JavaScript is called JSX, which is an extension of JavaScript syntax. When the above code is run directly in the JavaScript environment, an error will be reported. The essence of JSX is syntactic sugar for the following code.

1

const vnode = createVnode(&#39;div&#39;,{id:"app"}, &#39;hello&#39;)

Copy after login

In fact, createVnode is also called inside the h function to return the virtual DOM.

So, how to use JSX in Vue project?

By default, vue3 vite projects do not support jsx. If you want to support jsx, you need to install the plug-in @vitejs/plugin-vue-jsx

Installation

1

npm i @vitejs/plugin-vue-jsx -D

Copy after login

Configure in vite.config.js:

1

2

3

4

5

6

7

8

import vueJsx from "@vitejs/plugin-vue-jsx"; // 配置vue使用jsx

 

export default defineConfig({

  plugins: [

    vue(),

    vueJsx()

  ],

});

Copy after login

Then you can use it in the Vue component:

1

2

3

4

5

6

7

8

9

10

// render.vue

<script>

import { ref } from "vue";

export default {

  setup() {

    const count = ref(100);

    return () => <div>count is: {count.value}</div>;

  },

};

</script>

Copy after login

Note: lang in the script must be changed to jsx.

Or a jsx file:

1

2

3

4

5

6

7

8

// render.jsx

import { defineComponent } from &#39;vue&#39;

 

export default defineComponent({

  setup() {

    return () => <div>jsx文件</div>

  }

})

Copy after login

Template vs JSX

How should we choose JSX and template?

Advantages of template: The syntax of template is fixed, only v-if, v-for and so on. We write according to this fixed format syntax, so that Vue3 can easily optimize static tags at the compilation level and reduce the Diff process. For example, static promotion, type tags, tree structure balancing, etc. can improve virtual DOM runtime performance. This is also an important reason why Vue 3's virtual DOM is faster than Vue 2.

Reference: Vue rendering mechanism

Advantages of JSX: template cannot support more dynamic needs like JSX due to syntax limitations. . This is also an advantage of JSX compared to templates.

JSX has another advantage over template in that it can return multiple components in one file.

How to choose?

When realizing business needs, give priority to using templates and make full use of Vue's own performance optimization. Components with higher dynamic requirements can be implemented using JSX. (For example, later, I will use JSX to implement the dynamic form generator)

Summary

First of all, we usually use template templates to create applications in projects, template templates Will be compiled into render rendering function during the build phase. The rendering function is a function used to return the virtual DOM.

Then we can actually skip this step and directly use the h function to generate virtual DOM.

The internal execution of the h function is actually the createVNode function to generate the virtual DOM. However, since the h function is difficult to write, we use JSX to write it more conveniently and quickly. The createVNode function is actually used internally in JSX.

JSX cannot be executed directly in JavaScript. In the vite project, we need to install the plug-in @vitejs/plugin-vue-jsx

and configure it accordingly Only then.

Finally, the advantages and disadvantages of template and JSX are compared. The advantage of template is that its syntax is fixed and easy to write. At the compilation level, Vue3 has made a lot of optimizations for template compilation. The advantage of JSX is flexibility. In some cases with high dynamic requirements, JSX has become the standard configuration.

As the saying goes, there are specialties in the art industry. No one is more powerful than the other in template and JSX. They each have their own advantages and disadvantages in different scenarios. They are both powerful programming tools when used properly.

(End)

(Learning video sharing: web front-end development, Basic programming video)

The above is the detailed content of An article explaining in detail how to use JSX in vue3. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use bootstrap in vue How to use bootstrap in vue Apr 07, 2025 pm 11:33 PM

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

How to add functions to buttons for vue How to add functions to buttons for vue Apr 08, 2025 am 08:51 AM

You can add a function to the Vue button by binding the button in the HTML template to a method. Define the method and write function logic in the Vue instance.

How to use watch in vue How to use watch in vue Apr 07, 2025 pm 11:36 PM

The watch option in Vue.js allows developers to listen for changes in specific data. When the data changes, watch triggers a callback function to perform update views or other tasks. Its configuration options include immediate, which specifies whether to execute a callback immediately, and deep, which specifies whether to recursively listen to changes to objects or arrays.

How to reference js file with vue.js How to reference js file with vue.js Apr 07, 2025 pm 11:27 PM

There are three ways to refer to JS files in Vue.js: directly specify the path using the &lt;script&gt; tag;; dynamic import using the mounted() lifecycle hook; and importing through the Vuex state management library.

What does vue multi-page development mean? What does vue multi-page development mean? Apr 07, 2025 pm 11:57 PM

Vue multi-page development is a way to build applications using the Vue.js framework, where the application is divided into separate pages: Code Maintenance: Splitting the application into multiple pages can make the code easier to manage and maintain. Modularity: Each page can be used as a separate module for easy reuse and replacement. Simple routing: Navigation between pages can be managed through simple routing configuration. SEO Optimization: Each page has its own URL, which helps SEO.

How to return to previous page by vue How to return to previous page by vue Apr 07, 2025 pm 11:30 PM

Vue.js has four methods to return to the previous page: $router.go(-1)$router.back() uses &lt;router-link to=&quot;/&quot; component window.history.back(), and the method selection depends on the scene.

How to use vue traversal How to use vue traversal Apr 07, 2025 pm 11:48 PM

There are three common methods for Vue.js to traverse arrays and objects: the v-for directive is used to traverse each element and render templates; the v-bind directive can be used with v-for to dynamically set attribute values ​​for each element; and the .map method can convert array elements into new arrays.

How to jump a tag to vue How to jump a tag to vue Apr 08, 2025 am 09:24 AM

The methods to implement the jump of a tag in Vue include: using the a tag in the HTML template to specify the href attribute. Use the router-link component of Vue routing. Use this.$router.push() method in JavaScript. Parameters can be passed through the query parameter and routes are configured in the router options for dynamic jumps.

See all articles