init component

This commit is contained in:
Robin COuret
2026-02-16 17:28:37 +01:00
parent 460c7a25e0
commit e0e50af706
4557 changed files with 666911 additions and 8 deletions

14
node_modules/buetify/lib/composables/labelId/useLabelId.d.ts generated vendored Executable file
View File

@@ -0,0 +1,14 @@
import { PropType, ExtractPropTypes } from 'vue';
export declare const UseLabelIdPropsDefinition: {
labelFor: PropType<string>;
label: {
type: PropType<string>;
default: string;
};
};
export declare type UseLabelIdProps = ExtractPropTypes<typeof UseLabelIdPropsDefinition>;
export declare function useLabelId(props: UseLabelIdProps, prefix: string): {
id: import("vue").ComputedRef<string>;
labelId: import("vue").ComputedRef<string>;
label: import("vue").Ref<string>;
};