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

19 lines
330 B
Vue

<template>
<el-button type="success" :size="size"><Icon name="pencil-square" 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>
<style scoped></style>