Vue beaforeCreate时获取data中的数据
Posted katydids
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue beaforeCreate时获取data中的数据相关的知识,希望对你有一定的参考价值。
-
异步获取即:通过 $this.$nextTick或者settimeout,这连dom都可以拿出来
beforeCreate() { this.$nextTick(function() { console.log(this.属性名); }) })
-
同步获取:在beforeCreate之前,所有的iptions都会先存到vm.$options中,也就是说使用this.$options.data就行了
以上是关于Vue beaforeCreate时获取data中的数据的主要内容,如果未能解决你的问题,请参考以下文章