Nuxt/examples/custom-routes/pages/users.vue
2016-12-15 20:13:54 +01:00

67 lines
1.2 KiB
Vue

<template>
<div class="container clearfix">
<h1>Nested routes example</h1>
<h2>Users list</h2>
<ul class="users">
<li v-for="user in users">
<router-link :to="{ name: 'users-id', params: { id: user.id } }">{{ user.name }}</router-link>
</li>
</ul>
<router-view></router-view>
</div>
</template>
<script>
import axios from 'axios'
export default {
transition: 'bounce',
data () {
return axios.get('https://jsonplaceholder.typicode.com/users')
.then((res) => {
return { users: res.data }
})
}
}
</script>
<style scoped>
.users {
margin: 10px 0;
float: left;
list-style-type: none;
}
.users li a {
display: inline-block;
width: 200px;
border: 1px #ddd solid;
padding: 10px;
text-align: left;
color: #222;
text-decoration: none;
}
.users li a:hover {
color: #41b883;
}
.router-link-active {
color: #41b883 !important;
}
.bounce-enter-active {
animation: bounce-in .8s;
}
.bounce-leave-active {
animation: bounce-out .5s;
}
@keyframes bounce-in {
0% { transform: scale(0) }
50% { transform: scale(1.5) }
100% { transform: scale(1) }
}
@keyframes bounce-out {
0% { transform: scale(1) }
50% { transform: scale(1.5) }
100% { transform: scale(0) }
}
</style>