补充部分组件描述

This commit is contained in:
就眠儀式
2022-02-06 03:19:24 +08:00
parent a74c559fdd
commit 6e568f2d2f
94 changed files with 352 additions and 259 deletions

View File

@@ -9,12 +9,13 @@ import LayCheckbox from "../checkbox";
import { SelectItem, SelectItemHandle, SelectItemPush } from "../../types";
import { computed, inject, onMounted, Ref } from "vue";
const props = withDefaults(
defineProps<{
value: string | null | undefined;
label?: string;
disabled?: boolean;
}>(),
export interface LaySelectOptionProps {
value: string | null | undefined;
label?: string;
disabled?: boolean;
}
const props = withDefaults(defineProps<LaySelectOptionProps>(),
{
disabled: false,
}

View File