Skip to content

Instantly share code, notes, and snippets.

@MartinMalinda
Last active August 8, 2020 13:03
Show Gist options
  • Save MartinMalinda/fa9662eebd044f7789e9f3d411a945ac to your computer and use it in GitHub Desktop.
Save MartinMalinda/fa9662eebd044f7789e9f3d411a945ac to your computer and use it in GitHub Desktop.
<template>
<div>
<hr />
<div v-if="getLatestTask.lastSuccessful">The weather is: {{ weatherData.temp }} C</div>
<hr />
<button :disabled="getLatestTask.isIdle" @click="getLatestTask.cancelAll">
Pause
</button>
<button
:disabled="getLatestTask.isRunning"
@click="getLatestTask.perform"
>
Resume
</button>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment