mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 14:54:37 +00:00
18 lines
372 B
Vue
18 lines
372 B
Vue
<template>
|
|
<Button
|
|
v-show="isRefreshable"
|
|
severity="info"
|
|
text
|
|
icon="pi pi-refresh"
|
|
@click="refreshSelected"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Button from 'primevue/button'
|
|
|
|
import { useRefreshableSelection } from '@/composables/useRefreshableSelection'
|
|
|
|
const { isRefreshable, refreshSelected } = useRefreshableSelection()
|
|
</script>
|