Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilyasakin/7358a0bf56710f8f618a34c079b97a92 to your computer and use it in GitHub Desktop.
Save ilyasakin/7358a0bf56710f8f618a34c079b97a92 to your computer and use it in GitHub Desktop.
<template>
...
<Spinner :status="isLoading" />
...
</template>
<script setup lang="ts">
const isLoading = ref<boolean>(false);
const onClickSave = () => {
isLoading.value = true;
// ...
isLoading.value = false;
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment