Vue项目运行后会把各个组件的数据挂载到对应的dom上
根组件(#app)上获取实例
首先 app.vue 会挂载到 id 为 “app” 的 div 上边
打印这个div
console.dir(document.querySelector('#app'))
查看控制台,发现存在一个键:"vue"
其实app.vue对应的实例就是这个vue对象 打印这个对象
console.dir(document.querySelector('#app').__vue__)
仔细观察这个对象,不难发现,这里面有许多Vue当中常用的方法和对象:
this.$store
this.$refs
this.$listeners
this.$route
this.$router
this.$emit()
// 更多对象和方法可以去__proto__中去查找
如果要查看子组件的实例,方法同上:
// 假设子组件的class = "back-list"
console.dir(document.querySelector('.back-list').__vue__)