Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Last active March 30, 2018 18:32
Show Gist options
  • Save SaraVieira/0855550ad8387eb64eb2107c3e5b40a3 to your computer and use it in GitHub Desktop.
Save SaraVieira/0855550ad8387eb64eb2107c3e5b40a3 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">
</section>
</template>
</ApolloQuery>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment