vm.$data
實(shí)例對(duì)象data屬性
vm.$props
實(shí)例對(duì)象props屬性
vm.$el
實(shí)例對(duì)象根DOM元素
vm.$options
實(shí)例初始化選項(xiàng)霞势,需要在選項(xiàng)中包含自定義屬性時(shí)用
new Vue({
customOption:'66',
created:function(){
console.log(this.$options.customOption);
}
});
vm.$parent
父組件實(shí)例
vm.$root
根組件實(shí)例
vm.$children
直接子組件實(shí)例(不保證順序抬探,不是響應(yīng)式的)
vm.$slots
插槽分發(fā)的內(nèi)容嫂拴,slot="foo"朗伶,內(nèi)容會(huì)在vm.$slots.foo找到,vm.$slots.default屬性包括了所有非具名插槽節(jié)點(diǎn)
vm.$scopedSlots
作用域插槽
vm.$refs
已注冊(cè)過(guò)ref的所有子組件
vm.$isServer
當(dāng)前實(shí)例是否運(yùn)行于服務(wù)器
vm.$attrs
父作用域中不被認(rèn)為props的特性綁定(class和style除外)
vm.$listeners
父作用域v-on事件監(jiān)聽(tīng)器(不含.native修飾器)宾毒,可通過(guò)
v-on="$listeners"
傳入組件內(nèi)部