h 函数是什么
h 函数本质就是 createElement() 的简写,作用是根据配置创建对应的虚拟节点,在vue 中占有极其重要的地位!!!
h 函数的配置
参数
接收三个参数:type,props 和 children
type
- 类型:String | Object | Function
- 详细:HTML 标签名、组件、异步组件或函数式组件 (注意:Vue3 不支持组件名用字符串表示了,必须直接使用组件名)
例如:
import MySon from './son.vue'
h('div', {}, [
h(MySon, {props: {name: 'hhh'}})
])
props
{
'class': {
foo: true,
bar: false
},
style: {
color: 'red',
fontSize: '14px'
},
attrs: {
id: 'foo'
},
props: {
myProp: 'bar'
},
domProps: {
innerHTML: 'baz'
},
on: {
click: this.clickHandler
},
nativeOn: {
click: this.nativeClickHandler
},
directives: [
{
name: 'my-custom-directive',
value: '2',
expression: '1 + 1',
arg: 'foo',
modifiers: {
bar: true
}
}
],
scopedSlots: {
default: props => createElement('span', props.text)
},
slot: 'name-of-slot',
key: 'myKey',
ref: 'myRef'
}
children
-
类型:String | Object | Array -
String h('div', {}, 'Some text comes first.')
生成的虚拟节点: <div>Some text comes first.</div>
-
Array h('div', {}, [
'Some text comes first.',
h('h1', 'A headline'),
h(MyComponent, {
props: {
name: 'hhh'
}
})
])
生成的虚拟节点: <div>
Some text comes first.
<h1>A headline</h1>
<MyComponent name="hhh" />
</div>
-
Object 这个挺实用的,特别是需要传入多个具名插槽的时候!!!
子组件:
<template>
<div>
你好,我是子组件,下面是两个具名插槽
<template #content />
<template #contentTips />
</div>
</template>
父组件:
const props = {
name: 'aaa',
age: 18
}
const slots = {}
['content', 'contentTips'].forEach(name => slots[name] = h('div', {key: name}, name));
h(MySon, {...props}, slots);
关于 Vue3 中 h 函数如何接收子组件$emit发送的事件
这个问题困扰了我很久。
以前 vue2 的写法:
子组件 MySon :
<template>
<div>
<button @click.stop="$emit('start', 'gogogo!!!')"/>
</div>
</template>
父组件的 h 函数:
import MySon from './son.vue'
h(MySon, {
start(data) {
console.log(data);
},
})
如今 vue3 的写法(绑定的事件名需要加多一个on前缀):
子组件:
<template>
<div>
<button @click.stop="$emit('start', 'gogogo!!!')"/>
</div>
</template>
父组件的 h 函数:
h(TableActionButtons, {
onStart(data) {
console.log(data);
},
})
|