The estate computed
of the object Vue is where its Computed Properties.
You can think of Computed Properties as properties where only getters (and optionally, setters) are defined for something.
There is no registered value in the property, but a getter function that may or may not search for the desired value elsewhere. One of the advantages of using Computed Properties in Vue.JS is that Vue caches the getter result, and invalidates the cache if the getter dependencies are changed.
Basic example using computed Property to calculate the full name:
var app = new Vue({
el: '#app',
data: {
nome: '',
sobrenome: ''
},
computed: {
nome_completo: function () {
// concatena e elimina espaços em excesso
return `${this.nome } ${this.sobrenome}`.replace(/\s+/g, ' ')
}
}
});
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.min.js"></script>
<div id="app">
<input v-model="nome">
<input v-model="sobrenome">
<div>{{ nome_completo }}</div>
</div>
Now, answering why your code gives error when changing the name of computed Property:
The state
count
is one thing, the computed property
count
is another.
The state
count
is only referenced within the function contador()
on the line
return store.state.count
The computed property
count
is being referenced in the template, on the line
<span>{{ count }}</span>
To access the computed property
you need to access it through the Vue object. Example:
this.count // Acessa a computed property
To access the state
count
you need to access it through Vuex. In your example:
store.state.count
Below I changed only the name of computed property
in the Vue object and template to show how it works with different names.
const store = new Vuex.Store({
state: {
count: 0
},
mutations: {
incrementa: state => state.count++,
decrementa: state => state.count--
}
})
new Vue({
el: '#app',
computed: {
contador() { // agora é contador
return store.state.count
}
},
methods: {
incrementa() {
store.commit('incrementa')
},
decrementa() {
store.commit('decrementa')
}
}
})
span{padding: 0 15px;}
<script src="https://unpkg.com/vuex@3.0.1"></script>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<div id="app">
<p>
<button @click="incrementa">+</button>
<span>{{ contador }}</span> <!-- printa a computed property -->
<button @click="decrementa">-</button>
</p>
</div>
All right, you came up with another method (Testing) inside computed that returns the store with the state of the variable Count and this method does the same as the method Count, right. Only doubt persists, if you change the name of the method
count()
error, this you would like to know pq? You said in your reply "In this case, the method name inside the computed does not need to be the same variable name", tries to rename Count() to see if there is no error.– LeAndrade
Dude if you change the computed Count() you have to change the HTML to the name you changed, did you change it? computed is like a data() variable, so it has to change in HTML as well, the name of HTML and computed must be exactly the same.
– guastallaigor
Exact man, it was this even though I wasn’t getting it. I switched on computed but not HTML. Thanks plea help!
– LeAndrade