- 异步获取即:通过 $this.$nextTick或者settimeout,这连dom都可以拿出来
beforeCreate() { this.$nextTick(function() { console.log(this.属性名); }) })
- 同步获取:在beforeCreate之前,所有的iptions都会先存到vm.$options中,也就是说使用this.$options.data就行了
原文地址:https://www.cnblogs.com/katydids/p/9944671.html
时间: 2024-11-06 01:09:28