Nuxt/examples/with-firebase/pages/index.vue

40 lines
896 B
Vue
Raw Normal View History

2017-02-25 03:37:05 +00:00
<template>
<div>
<table class="table table-bordered">
<thead>
<tr>
<th>Avatar</th>
<th>Name</th>
<th>Title</th>
<th>Profile</th>
</tr>
</thead>
<tbody>
2017-11-26 13:40:57 +00:00
<tr v-for="(user, key) in users" :key="key">
2017-02-25 03:37:05 +00:00
<td>
<nuxt-link :to="{ path: `/users/${key}`}">
<img :src="user.avatar" class="rounded" alt="avatar">
</nuxt-link>
</td>
<td>{{ user.name }}</td>
<td>{{ user.title }}</td>
<td>
<nuxt-link :to="{ path: `/users/${key}`}">View profile &rarr;</nuxt-link>
</td>
</tr>
</tbody>
</table>
</div>
</template>
<script>
2017-10-19 09:25:19 +00:00
import axios from '~/plugins/axios'
2017-02-25 03:37:05 +00:00
export default {
2017-10-31 13:43:55 +00:00
async asyncData() {
2017-10-19 09:25:19 +00:00
const { data: users } = await axios.get('users.json')
return { users }
2017-02-25 03:37:05 +00:00
}
}
</script>