标题:
#VNode Props 格式化
[打印本页]
作者:
vicky.yu
时间:
2024-1-2 09:29
标题:
#VNode Props 格式化
#2.x 语法
在 2.x 中,domProps 包含 VNode props 中的嵌套列表:
// 2.x
{
class: ['button', 'is-outlined'],
style: { color: '#34495E' },
attrs: { id: 'submit' },
domProps: { innerHTML: '' },
on: { click: submitForm },
key: 'submit-button'
}
#3.x 语法
在 3.x 中,整个 VNode props 结构是扁平的,使用上面的例子,下面是它现在的样子
// 3.x 语法
{
class: ['button', 'is-outlined'],
style: { color: '#34495E' },
id: 'submit',
innerHTML: '',
onClick: submitForm,
key: 'submit-button'
}
欢迎光临 赛捷软件论坛 (http://www.sagesoft.cn/BBS/)
Powered by Discuz! 7.2