Files
catchAdmin/resources/admin/components/admin/buttons/destroy.vue
2023-02-20 14:41:26 +08:00

17 lines
297 B
Vue

<template>
<el-button type="danger" :size="size"><Icon name="trash" className="w-4 h-4 mr-1" /> {{ text }}</el-button>
</template>
<script lang="ts" setup>
defineProps({
size: {
type: String,
default: 'small',
},
text: {
type: String,
default: '删除',
},
})
</script>