Top "Computed-properties" questions

Computed properties are functions declared as property.

Difference between computed property and property set with closure

I'm new to Swift. What is the difference between a computed property and a property set to a closure? I …

swift computed-properties
Computed properties in Vuetify Datatable rows

I am using Vuetify and Vuetify/Datatables for a website. Now I want some computed properties on every row of …

vue-component vuetify.js computed-properties
Why is computed value not updated after vuex store update?

I got a printerList computed property that should be re-evaluated after getPrinters() resolve, but it look like it's not. sources …

vue.js computed-properties vuex
Load YAML nested with Jinja2 in Python

I have a YAML file (all.yaml) that looks like: ... var1: val1 var2: val2 var3: {{var1}}-{{var2}}.txt ... If …

python jinja2 dry pyyaml computed-properties
Vue.js + Vuetify using v-data-table within v-for

I have 2 computed arrays, homeTeam and awayTeam. The code below does work to generate 2 tables to display the homeTeam and …

vue.js computed-properties v-for vuetify.js
Using Computed Properties inside Methods in vueJs

I'm trying to create a shuffle function in vue.js. So, for this i created a computed properties and then …

vue.js computed-properties
Vue computed property not updating as expected

I have a count You have {{ keywordsLeft }} keywords left and in my Vue. var u = new Vue({ el:'#app', …

vue.js computed-properties
Are lazy vars in Swift computed more than once?

Are lazy vars in Swift computed more than once? I was under the impression that they replaced the: if (instanceVariable) { …

swift lazy-initialization computed-properties