This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-05-04_vuex-01-starting.../src/components/FavoriteValue.vue

15 lines
211 B
Vue
Raw Normal View History

2021-05-04 22:13:48 +02:00
<template>
2021-05-04 22:56:35 +02:00
<h3>{{ finalCounter }}</h3>
2021-05-04 22:13:48 +02:00
<p>More...</p>
</template>
<script>
2021-05-04 22:56:35 +02:00
import { mapGetters } from 'vuex';
2021-05-04 22:13:48 +02:00
export default {
computed: {
...mapGetters('counter', ['finalCounter'])
2021-05-04 22:13:48 +02:00
}
};
</script>