vue:vm.$options
程序员文章站
2024-03-05 11:54:00
...
vm.$options:是用来获取data属性之外属性的方法
new Vue({
customOption: 'foo',
created: function () {
console.log(this.$options.customOption) // => 'foo'
}
})