Skip to content

Instantly share code, notes, and snippets.

@MartinMalinda
Last active July 3, 2020 15:08
Show Gist options
  • Save MartinMalinda/920aaff43b31e2679fa7e48dc7aced9b to your computer and use it in GitHub Desktop.
Save MartinMalinda/920aaff43b31e2679fa7e48dc7aced9b to your computer and use it in GitHub Desktop.
<template>
<div>
<div v-if="isLoading"> Loading ... </div>
<div v-else="error"> {{ error.message }} <button @click="getUsers">try again</button> </div>
<div v-else> {{ data }} </div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment