i
- accept: accept(deps, callback) { if (typeof deps === 'function' || !deps) { // self-accept: hot.accept(() =>
- acceptExports: acceptExports(_, callback) { acceptDeps([ownerPath], ([mod]) =>
- data: (…)
- decline: ƒ decline()
- dispose: ƒ dispose(cb)
- invalidate: ƒ invalidate(message)
- on: on(event, cb) { const addToMap = (map) =>
- prune: ƒ prune(cb)
- send: ƒ send(event, data)
- get data: ƒ data()
const app = createApp(RootComponent); app._context.components
const vm = app.mount('#app'); vm.$
vm在控制台打印是看不到属性的, 但是proxy的get函数自动取一些属性, 可以取到什么属性呢?
js
var publicPropertiesMap = (
extend(/* @__PURE__ */ Object.create(null), {
$: (i) => i,
$el: (i) => i.vnode.el,
$data: (i) => i.data,
$props: (i) => true ? shallowReadonly(i.props) : i.props,
$attrs: (i) => true ? shallowReadonly(i.attrs) : i.attrs,
$slots: (i) => true ? shallowReadonly(i.slots) : i.slots,
$refs: (i) => true ? shallowReadonly(i.refs) : i.refs,
$parent: (i) => getPublicInstance(i.parent),
$root: (i) => getPublicInstance(i.root),
$emit: (i) => i.emit,
$options: (i) => __VUE_OPTIONS_API__ ? resolveMergedOptions(i) : i.type,
$forceUpdate: (i) => i.f || (i.f = () => queueJob(i.update)),
$nextTick: (i) => i.n || (i.n = nextTick.bind(i.proxy)),
$watch: (i) => __VUE_OPTIONS_API__ ? instanceWatch.bind(i) : NOOP
})
);
打印子组件
js
const subTree = vm.$.subTree;//(VNode 树)
component 属性
用于获取子组件实例, 存储在父组件的 `subTree` 结构中
subTree 属性
一个 VNode, 包含了该组件的所有子节点(包括元素和组件)
打印子组件vm.$.subTree.children.default()[0].children.default()[0].children.default()