fix: 添加 table文档(30%)
This commit is contained in:
39
nezha-docs/src/table/tableChild/deleteButton/index.vue
Normal file
39
nezha-docs/src/table/tableChild/deleteButton/index.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user