1
A
回答
1
沒有這樣的事情有一個Vue公司實例的計算性能來訪問對象沒有內置的方式。
如果您確實需要計算屬性名稱和值的對象用於測試目的,則可以使用_computedWatchers
屬性中的信息定義屬於自己的$computed
屬性。這可能是挑剔的,我不會在生產代碼中使用它。
Object.defineProperty(Vue.prototype, '$computed', {
get() {
let computed = {};
Object.keys(this._computedWatchers).forEach((key) => {
computed[key] = this._computedWatchers[key].value;
})
return computed;
}
})
new Vue({
el: '#app',
data() {
return {
foo: 1,
}
},
computed: {
bar() {
return this.foo * 2;
}
},
mounted() {
console.log(this.$computed)
}
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.2/vue.min.js"></script>
<div id="app">{{ bar }}</div>
相關問題
- 1. Vue JS AJAX計算屬性
- 2. 從父項訪問Vue中組件的計算屬性
- 3. 錯誤訪問定義對象的實例的屬性
- 4. 訪問,而無需創建對象實例的原型屬性
- 5. 如何使用Knockout訪問綁定對象實例的屬性
- 6. 對象的訪問屬性
- 7. 使用計算屬性鍵訪問對象值
- 8. 如何從對象內部訪問實例屬性?
- 9. 對象:在訪問實例
- 10. LuaInterface:訪問對象屬性
- 11. 訪問AppDelegate對象屬性
- 12. 訪問對象屬性
- 13. Javascript - 訪問對象屬性
- 14. 訪問對象屬性
- 15. jQuery - 訪問對象屬性
- 16. 訪問對象屬性[]
- 17. 訪問對象屬性中
- 18. Vue JS,複選框和計算屬性
- 19. Vue js計算屬性評估順序
- 20. 如何訪問類實例的屬性
- 21. 訪問數組內的實例屬性
- 22. 所有實例上的模型實例dependend的計算屬性
- 23. 計算JavaScript對象中的屬性數
- 24. Ember服務對象的計算屬性
- 25. Rails + Vue:訪問實例變量
- 26. 訪問表單屬性與實例VB.net
- 27. 訪問通用實例屬性
- 28. 實體框架計算屬性問題
- 29. Java訪問實例化的對象
- 30. JNI訪問對象的實例變量
this.nameOfComputedProperty – thanksd
@thanksd作爲問題暗示,我所要求的計算性能的集合,而不是明確地選擇他們 – Johan
啊確定這是不是清楚我 – thanksd