Last active
August 8, 2020 13:03
-
-
Save MartinMalinda/fa9662eebd044f7789e9f3d411a945ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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