[Refactor] Split SelectionToolbox buttons to components (#3902)

This commit is contained in:
Chenlei Hu
2025-05-15 11:20:51 -04:00
committed by GitHub
parent 985dab7e1c
commit 9a5b80a279
9 changed files with 149 additions and 73 deletions

View File

@@ -0,0 +1,22 @@
<template>
<Button
v-tooltip.top="{
value: t('commands.Comfy_Canvas_DeleteSelectedItems.label'),
showDelay: 1000
}"
severity="danger"
text
icon="pi pi-trash"
@click="() => commandStore.execute('Comfy.Canvas.DeleteSelectedItems')"
/>
</template>
<script setup lang="ts">
import Button from 'primevue/button'
import { useI18n } from 'vue-i18n'
import { useCommandStore } from '@/stores/commandStore'
const { t } = useI18n()
const commandStore = useCommandStore()
</script>