Table of Contents
1. Introduction to render function
1.1 Virtual DOM" >1.1 Virtual DOM
1.2 Parameters accepted by createElement" >1.2 Parameters accepted by createElement
1.3 Use of render function " >1.3 Use of render function
1.4 In-depth render function data object" >1.4 In-depth render function data object
1.5 Constraints" >1.5 Constraints
2. Application of render function
2.1 Render a simple element" > 2.1 Render a simple element
" >2.3 Use JavaScript to replace the template function
" >2.4 Static slots
" >##2.5 Scope slot
Home Web Front-end Front-end Q&A Which command does the vue rendering function use?

Which command does the vue rendering function use?

Dec 20, 2022 pm 08:24 PM
front end vue.js

The vue rendering function uses the "render" command. In vue, template HTML syntax is used to build pages, and the render function can be used to build DOM in js language. Because vue is a virtual DOM, it must be translated into a VNode function when getting the template. By using the render() function to build the DOM, vue eliminates the translation process.

Which command does the vue rendering function use?

The operating environment of this tutorial: windows7 system, vue3 version, DELL G3 computer.

In most cases, Vue recommends using template syntax to create applications. However, in some use cases, we really need to use the full programming capabilities of JavaScript. This is when the rendering function --render comes in handy.

1. Introduction to render function

Simply put, in vue we use template HTML syntax to build the page. Using the render function we can use js language to build it. DOM. Because vue is a virtual DOM, it must be translated into a VNode function when getting the template. By using the render function to build the DOM, vue eliminates the translation process.

When using the render function to describe the virtual DOM, vue provides a function, which is the tool needed to build the virtual DOM. It is named createElement on the official website. There is also an agreed abbreviation called h.

1.1 Virtual DOM

Vue tracks how it wants to change the real DOM by creating a virtual DOM. Please look at this line of code carefully:

1

return createElement('h1', this.blogTitle)

Copy after login

createElement What exactly will it return? Not actually an actual DOM element. Its more accurate name may be createNodeDescription, because the information it contains will tell Vue what kind of node needs to be rendered on the page, including the description information of its child nodes. We describe such a node as a "virtual node", and often abbreviate it as "VNode". "Virtual DOM" is what we call the entire VNode tree built from the Vue component tree.

1.2 Parameters accepted by createElement

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

// @returns {VNode}

createElement(

  // {String | Object | Function}

  // 一个 HTML 标签名、组件选项对象,或者

  // resolve 了上述任何一种的一个 async 函数。必填项。

  'div',

 

  // {Object}

  // 一个与模板中属性对应的数据对象。可选。

  {

    // (详情见1.3)

  },

 

  // {String | Array}

  // 子级虚拟节点 (VNodes),由 `createElement()` 构建而成,

  // 也可以使用字符串来生成“文本虚拟节点”。可选。

  [

    '先写一些文字',

    createElement('h1', '一则头条'),

    createElement(MyComponent, {

      props: {

        someProp: 'foobar'

      }

    })

  ]

)

Copy after login
1.3 Use of render function

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

render:(h) => {

  return h('div',{

    // 给div绑定class属性

    class: {

      child: true,

      more: false

    },

  // 给div绑定样式

  style:{

    width:'200px',

      height:'200px',

  }, 

  // 给div绑定点击事件  

    on: {

      click: () => {

        console.log('点击事件')

      }

    },

  })

}

Copy after login
1.4 In-depth render function data object

Just like v-bind:class and v-bind:style will be special in the template syntax Treated the same, they also have corresponding top-level fields in the VNode data object. This object also allows you to bind normal HTML attributes, as well as DOM attributes such as innerHTML (this will override the v-html directive)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

{

  // 与 `v-bind:class` 的 API 相同,

  // 接受一个字符串、对象或字符串和对象组成的数组

  'class': {

    foo: true,

    bar: false

  },

  // 与 `v-bind:style` 的 API 相同,

  // 接受一个字符串、对象,或对象组成的数组

  style: {

    color: 'red',

    fontSize: '14px'

  },

  // 普通的 HTML attribute

  attrs: {

    id: 'foo'

  },

  // 组件 prop

  props: {

    myProp: 'bar'

  },

  // DOM 属性

  domProps: {

    innerHTML: 'baz'

  },

  // 事件监听器在 `on` 属性内,

  // 但不再支持如 `v-on:keyup.enter` 这样的修饰器。

  // 需要在处理函数中手动检查 keyCode。

  on: {

    click: this.clickHandler

  },

  // 仅用于组件,用于监听原生事件,而不是组件内部使用

  // `vm.$emit` 触发的事件。

  nativeOn: {

    click: this.nativeClickHandler

  },

  // 自定义指令。注意,你无法对 `binding` 中的 `oldValue`

  // 赋值,因为 Vue 已经自动为你进行了同步。

  directives: [

    {

      name: 'my-custom-directive',

      value: '2',

      expression: '1 + 1',

      arg: 'foo',

      modifiers: {

        bar: true

      }

    }

  ],

  // 作用域插槽的格式为

  // { name: props => VNode | Array<VNode> }

  scopedSlots: {

    default: props => createElement(&#39;span&#39;, props.text)

  },

  // 如果组件是其它组件的子组件,需为插槽指定名称

  slot: &#39;name-of-slot&#39;,

  // 其它特殊顶层属性

  key: &#39;myKey&#39;,

  ref: &#39;myRef&#39;,

  // 如果你在渲染函数中给多个元素都应用了相同的 ref 名,

  // 那么 `$refs.myRef` 会变成一个数组。

  refInFor: true

}

Copy after login
1.5 Constraints

All VNodes in the component tree must be unique.

This means that the following rendering function is illegal:

1

2

3

4

5

6

7

render: function (createElement) {

  var myParagraphVNode = createElement(&#39;p&#39;, &#39;hi&#39;)

  return createElement(&#39;div&#39;, [

    // 错误 - 重复的 VNode

    myParagraphVNode, myParagraphVNode

  ])

}

Copy after login

If you really need to repeat elements/components many times, you can use factory functions to achieve it.

For example, the following rendering function renders 20 identical paragraphs in a completely legal way:

1

2

3

4

5

6

7

render: function (createElement) {

  return createElement(&#39;div&#39;,

    Array.apply(null, { length: 20 }).map(function () {

      return createElement(&#39;p&#39;, &#39;hi&#39;)

    })

  )

}

Copy after login

2. Application of render function

2.1 Render a simple element

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

// app.vue (根组件)

 

<template>

  <div id="app">

    <myRender></myRender>

  </div>

</template>

 

<script>

import myRender from &#39;./components/myRender&#39;

export default {

  components:{

    myRender

  }

}

</script>

Copy after login

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

// myRender.vue

 

<script>

export default {

  render:(h) => {

    return h(&#39;div&#39;,{

      class: {

        child: true,

        more: false

      },

      attrs: {

        id: &#39;foo&#39;,

        name: &#39;child&#39;

      },

    style: {

      width:&#39;100%&#39;,

        height:&#39;200px&#39;,

    },

      domProps: {

        innerHTML: &#39;我是render渲染的子组件&#39;

      }

    })

  }

}

</script>

 

<style scoped>

.child {

  background: pink

  font-size 24px

  letter-spacing 2px

}

.more {

  background: red

}

</style>

Copy after login

Which command does the vue rendering function use?

##2.2 Add a subtag

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

<script>

export default {

  render:(h) => {

    return h(&#39;div&#39;,

      {

        class: &#39;wrapper&#39;,

        attrs: {

          id: &#39;wrapper&#39;,

        },

      style: {

        width:&#39;100%&#39;,

          height:&#39;250px&#39;

      },

      },[

        h(&#39;h2&#39;,&#39;标题&#39;),

        h(&#39;div&#39;,{

          class: &#39;content&#39;,

          attrs: {

            id: &#39;content&#39;,

          },

          style:{

            width:&#39;800px&#39;,

            height:&#39;100px&#39;

          },

          domProps:{

            innerHTML:&#39;我是内容&#39;

          }

        })

      ]

    )

  }

}

</script>

 

<style scoped>

.wrapper

  background: pink

  letter-spacing 2px

  .content

    margin 0 auto

    background: red

    color #ffffff

    font-size 24px

 

</style>

Copy after login

Which command does the vue rendering function use?

2.3 Use JavaScript to replace the template function
It can be easily done in native JavaScript operation, Vue's rendering functions do not provide proprietary alternatives.

1. In v-if and v-for template syntax:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

<ul v-if="items.length">

  <li v-for="item in items">{{ item.name }}</li>

</ul>

<p v-else>No items found.</p>

 

<script>

export default {

  data(){

    return{

      items:[1,2,3]

    }

  }

}

</script>

Copy after login

render function implementation:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

<script>

export default {

  render: function (createElement) {

    if (this.items.length) {

      return createElement(&#39;ul&#39;, this.items.map(function (item) {

        return createElement(&#39;li&#39;, item.name)

      }))

    } else {

      return createElement(&#39;p&#39;, &#39;No items found.&#39;)

    }

  },

  data(){

    return{

      items:[1,2,3]

    }

  }

}

</script>

Copy after login

2. v-model

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

<script>

export default {

  render:function(createElement) {

    var self = this

    return createElement(&#39;div&#39;,[

        createElement(&#39;div&#39;,{class: &#39;showContent&#39;},self.inputValue),

        createElement(&#39;input&#39;,{

          class: &#39;content&#39;,

          domProps:{

            value:self.inputValue

          },

          on:{

            input:function(event){

              self.inputValue = event.target.value

            }

          }

        })

      ]

    )

  },

  data(){

    return{

      inputValue:&#39;&#39;

    }

  },

  watch:{

    inputValue:function(){

      console.log(this.inputValue)

    }

  },

}

</script>

 

<style scoped>

.showContent

  font-size 32px

  letter-spacing 2px

.content

  margin 10px auto

  color blue

  font-size 24px

</style>

Copy after login

Which command does the vue rendering function use?

2.4 Static slots

Usage of this.$slots

1. Parent component

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<template>

  <div id="app">

    <myRender>

      <template v-slot:header>

        <div >

          头部

        </div>

      </template>

      <template #footer>

        <div >

          脚部

        </div>

      </template>

    </myRender>

  </div>

</template>

 

<script>

import myRender from &#39;./components/myRender&#39;

export default {

  components:{

    myRender

  }

}

</script>

Copy after login

2, child component

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

<script>

export default {

  render:function(createElement) {

    let childHeader = this.$slots.header

    let childFooter = this.$slots.footer

    return createElement(

      &#39;div&#39;,

      {

        class: &#39;showContent&#39;,

        style:{

          width:&#39;100%&#39;

        }

      },

      [

        createElement(&#39;div&#39;,{class:&#39;childHeader&#39;},childHeader),

        createElement(&#39;div&#39;,childFooter),

      ]

    )

  },

}

</script>

 

<style scoped>

.showContent

  letter-spacing 2px

  background-color red

  .childHeader

    color blue

    font-size 24px

</style>

Copy after login

Which command does the vue rendering function use?

##2.5 Scope slot
Usage of this.$scopedSlots

1. Parent component

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

<template>

  <div id="app">

    <myRender :myLayout="layout">

      <template slot-scope="childMsg">

        <div >

          {{childMsg.text}}

        </div>

      </template>

    </myRender>

  </div>

</template>

 

<script>

import myRender from &#39;./components/myRender&#39;

export default {

  data(){

    return{

      layout:{

        header:&#39;头部&#39;,

        footer:&#39;脚部&#39;

      }

    }

  },

  components:{

    myRender

  }

}

</script>

Copy after login

2. Child component

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

<script>

export default {

  render:function(createElement) {

    let self = this

    return createElement(

      &#39;div&#39;,

      {

        style:{

          width:&#39;100%&#39;

        },

      },[

        self.$scopedSlots.default({

          text: this.myLayout.header

        })

      ]

    )

  },

  props:{

    myLayout:Object

  }

}

</script>

Copy after login

Which command does the vue rendering function use?[Related recommendations:

vuejs video tutorial

, web front-end development

The above is the detailed content of Which command does the vue rendering function use?. 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 Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1248
24
PHP and Vue: a perfect pairing of front-end development tools PHP and Vue: a perfect pairing of front-end development tools Mar 16, 2024 pm 12:09 PM

PHP and Vue: a perfect pairing of front-end development tools. In today's era of rapid development of the Internet, front-end development has become increasingly important. As users have higher and higher requirements for the experience of websites and applications, front-end developers need to use more efficient and flexible tools to create responsive and interactive interfaces. As two important technologies in the field of front-end development, PHP and Vue.js can be regarded as perfect tools when paired together. This article will explore the combination of PHP and Vue, as well as detailed code examples to help readers better understand and apply these two

Is Django front-end or back-end? check it out! Is Django front-end or back-end? check it out! Jan 19, 2024 am 08:37 AM

Django is a web application framework written in Python that emphasizes rapid development and clean methods. Although Django is a web framework, to answer the question whether Django is a front-end or a back-end, you need to have a deep understanding of the concepts of front-end and back-end. The front end refers to the interface that users directly interact with, and the back end refers to server-side programs. They interact with data through the HTTP protocol. When the front-end and back-end are separated, the front-end and back-end programs can be developed independently to implement business logic and interactive effects respectively, and data exchange.

C# development experience sharing: front-end and back-end collaborative development skills C# development experience sharing: front-end and back-end collaborative development skills Nov 23, 2023 am 10:13 AM

As a C# developer, our development work usually includes front-end and back-end development. As technology develops and the complexity of projects increases, the collaborative development of front-end and back-end has become more and more important and complex. This article will share some front-end and back-end collaborative development techniques to help C# developers complete development work more efficiently. After determining the interface specifications, collaborative development of the front-end and back-end is inseparable from the interaction of API interfaces. To ensure the smooth progress of front-end and back-end collaborative development, the most important thing is to define good interface specifications. Interface specification involves the name of the interface

Exploring Go language front-end technology: a new vision for front-end development Exploring Go language front-end technology: a new vision for front-end development Mar 28, 2024 pm 01:06 PM

As a fast and efficient programming language, Go language is widely popular in the field of back-end development. However, few people associate Go language with front-end development. In fact, using Go language for front-end development can not only improve efficiency, but also bring new horizons to developers. This article will explore the possibility of using the Go language for front-end development and provide specific code examples to help readers better understand this area. In traditional front-end development, JavaScript, HTML, and CSS are often used to build user interfaces

How to implement instant messaging on the front end How to implement instant messaging on the front end Oct 09, 2023 pm 02:47 PM

Methods for implementing instant messaging include WebSocket, Long Polling, Server-Sent Events, WebRTC, etc. Detailed introduction: 1. WebSocket, which can establish a persistent connection between the client and the server to achieve real-time two-way communication. The front end can use the WebSocket API to create a WebSocket connection and achieve instant messaging by sending and receiving messages; 2. Long Polling, a technology that simulates real-time communication, etc.

Django: A magical framework that can handle both front-end and back-end development! Django: A magical framework that can handle both front-end and back-end development! Jan 19, 2024 am 08:52 AM

Django: A magical framework that can handle both front-end and back-end development! Django is an efficient and scalable web application framework. It is able to support multiple web development models, including MVC and MTV, and can easily develop high-quality web applications. Django not only supports back-end development, but can also quickly build front-end interfaces and achieve flexible view display through template language. Django combines front-end development and back-end development into a seamless integration, so developers don’t have to specialize in learning

Questions frequently asked by front-end interviewers Questions frequently asked by front-end interviewers Mar 19, 2024 pm 02:24 PM

In front-end development interviews, common questions cover a wide range of topics, including HTML/CSS basics, JavaScript basics, frameworks and libraries, project experience, algorithms and data structures, performance optimization, cross-domain requests, front-end engineering, design patterns, and new technologies and trends. . Interviewer questions are designed to assess the candidate's technical skills, project experience, and understanding of industry trends. Therefore, candidates should be fully prepared in these areas to demonstrate their abilities and expertise.

Combination of Golang and front-end technology: explore how Golang plays a role in the front-end field Combination of Golang and front-end technology: explore how Golang plays a role in the front-end field Mar 19, 2024 pm 06:15 PM

Combination of Golang and front-end technology: To explore how Golang plays a role in the front-end field, specific code examples are needed. With the rapid development of the Internet and mobile applications, front-end technology has become increasingly important. In this field, Golang, as a powerful back-end programming language, can also play an important role. This article will explore how Golang is combined with front-end technology and demonstrate its potential in the front-end field through specific code examples. The role of Golang in the front-end field is as an efficient, concise and easy-to-learn

See all articles