Skip to content

Instantly share code, notes, and snippets.

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