Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Created March 30, 2018 18:34
Show Gist options
  • Save SaraVieira/54324cbeb1b3bcd71f87e329f10caf43 to your computer and use it in GitHub Desktop.
Save SaraVieira/54324cbeb1b3bcd71f87e329f10caf43 to your computer and use it in GitHub Desktop.
<template>
<ApolloQuery :query="query">
<template slot-scope="{ result: { loading, error, data } }">
<span v-if="loading">Loading...</span>
<span v-else-if="error">An error occured</span>
<section v-if="data">
<ul>
<li :key="name.id" v-for="name in data.allNameses" >
{{name.name}}
</li>
</ul>
</section>
</template>
</ApolloQuery>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment