This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-docs/src/table/tableChild/deleteButton/index.vue
2024-05-24 18:27:29 +08:00

40 lines
546 B
Vue

<script lang="ts" setup>
const props = withDefaults(defineProps<{
/**
* 是否显示强制删除
*/
forceDeleteShow?: boolean,
/**
* 需要删除的数组
*/
deleteObjs?: Array,
/**
* 删除接口
*/
api?: string,
/**
* 唯一id
*/
id?: string,
/**
* 删除按钮的样式 是按钮 还是文字
*/
type?: string,
/**
* 删除的标题
*/
deleteTitle?: string,
/**
* 是否需要强制删除
*/
single?: boolean,
}>(), {
})
</script>
<template>
<div>
</div>
</template>