补充部分组件描述
This commit is contained in:
@@ -7,12 +7,14 @@ export default {
|
||||
<script setup lang="ts">
|
||||
import { withDefaults, inject, Ref } from "vue";
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
export interface LayTabItemProps {
|
||||
id: string;
|
||||
title: string;
|
||||
closable?: boolean | string;
|
||||
}>(),
|
||||
closable?: boolean | string;
|
||||
}
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<LayTabItemProps>(),
|
||||
{
|
||||
closable: true,
|
||||
}
|
||||
|
||||
0
src/component/tabItem/interface.ts
Normal file
0
src/component/tabItem/interface.ts
Normal file
Reference in New Issue
Block a user