Vue.js 新增API梳理/学习(2.5~2.6)
程序员文章站
2022-05-17 11:09:21
...
ignoredElements 【忽略自定义元素, 支持正则】
Vue.config.ignoredElements = [
'my-custom-web-component',
/^ion-/
]
Vue.observable 【让一个对象可响应。 可作为最小化跨组件状态存储器】
const state = Vue.observable({ count: 0 })
errorCaptured 【当捕获一个来自子孙组件的错误时被调用。】
vm.$slots 【v-slot 指令取代 slot 和 slot-scope】
v-for 【支持在可迭代协议的值(Iterable)上使用,包括Map和Set,2.x目前不支持可响应Map和Set】
v-on 【支持动态事件】
<button v-on:[event]="doThis"></button>
<button @[event]="doThis"></button>
v-bind 【支持动态特性名】
<button v-bind:[key]="value"></button>
<button :[key]="value"></button>
keep-alive 【新增 max 属性,表最多可缓存的组件实例数】
查看详细说明,请转至官网Vue.js API
转载于:https://www.jianshu.com/p/03b782645eb2
上一篇: Flex中使用datagrid的分页技术