Ep17#07 - Mutations thay đổi state từ components (ok)

<template>
<div>
{{ result }}
</div>
</template>
<script>
export default {
name: 'AppCount',
computed: {
result(){
return this.$store.state.result;
}
}
}
</script>PreviousEp17#06 - mapGetters, sử dụng cú pháp ES (ok)NextEp17#08 - mapMutations và một vài lưu ý khi làm Vue.js (ok)
Last updated