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