mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
34 lines
620 B
Vue
34 lines
620 B
Vue
<template>
|
|
<div>
|
|
<h2>Articles</h2>
|
|
<ul>
|
|
<li v-for="(article, index) in articles" :key="index">
|
|
<span>{{article}}</span>
|
|
</li>
|
|
</ul>
|
|
<h2>Comments <small>(nested under articles)</small></h2>
|
|
<ul>
|
|
<li v-for="(comment, index) in comments" :key="index">
|
|
<span>{{comment}}</span>
|
|
</li>
|
|
</ul>
|
|
<nuxt-link to="/">Home</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
computed: mapGetters({
|
|
articles: 'articles/get',
|
|
comments: 'articles/comments/get'
|
|
}),
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|