mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
49 lines
684 B
Vue
49 lines
684 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h3>Cars</h3>
|
||
|
<ul>
|
||
|
<li v-for="car in allCars">
|
||
|
<nuxt-link :to="`car/${car.id}`">
|
||
|
{{ car.year }} {{ car.make }} {{ car.model }}
|
||
|
</nuxt-link>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import client from '~plugins/apollo'
|
||
|
import gql from 'graphql-tag'
|
||
|
|
||
|
export default {
|
||
|
apollo: {
|
||
|
allCars: gql`
|
||
|
query {
|
||
|
allCars {
|
||
|
id
|
||
|
make
|
||
|
model
|
||
|
year
|
||
|
}
|
||
|
}
|
||
|
`
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
line-height: 1.6;
|
||
|
}
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: #3498DB;
|
||
|
}
|
||
|
a:hover {
|
||
|
border-bottom: 1px solid;
|
||
|
}
|
||
|
</style>
|