mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-28 08:32:06 +00:00
21 lines
319 B
Vue
21 lines
319 B
Vue
<template>
|
|
<div>
|
|
<h1>{{ baz }}</h1>
|
|
<br>
|
|
<p>{{ $store.state.counter }}</p>
|
|
<br>
|
|
<h2>{{ getVal }}</h2>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
computed: {
|
|
...mapGetters('foo/bar', ['baz']),
|
|
...mapGetters('foo/blarg', ['getVal'])
|
|
}
|
|
}
|
|
</script>
|