Revert "fix(gi-table): 修复 GiTable 使用一些属性提示类型错误的问题"

This reverts commit aed635fe99.
This commit is contained in:
2024-12-18 20:25:07 +08:00
parent aed635fe99
commit ded9e04ff9
2 changed files with 4 additions and 11 deletions

View File

@@ -11,4 +11,4 @@ VITE_API_WS_URL = 'wss://api.continew.top'
VITE_BASE = '/' VITE_BASE = '/'
# 应用配置面板 # 应用配置面板
VITE_APP_SETTING = true VITE_APP_SETTING = false

View File

@@ -97,14 +97,7 @@
</template> </template>
<script setup lang="ts" generic="T extends TableData"> <script setup lang="ts" generic="T extends TableData">
import type { import type { DropdownInstance, TableColumnData, TableData, TableInstance } from '@arco-design/web-vue'
DropdownInstance,
Table,
TableColumnData,
TableData,
TableInstance,
} from '@arco-design/web-vue'
import { VueDraggable } from 'vue-draggable-plus' import { VueDraggable } from 'vue-draggable-plus'
defineOptions({ name: 'GiTable', inheritAttrs: false }) defineOptions({ name: 'GiTable', inheritAttrs: false })
@@ -144,8 +137,8 @@ defineSlots<{
const attrs = useAttrs() const attrs = useAttrs()
const slots = useSlots() const slots = useSlots()
type TableProps = Partial<InstanceType<typeof Table>['$props']>
interface Props extends TableProps { interface Props {
title?: string title?: string
data: T[] data: T[]
disabledTools?: string[] disabledTools?: string[]