init component
This commit is contained in:
14
node_modules/buetify/lib/composables/labelId/useLabelId.d.ts
generated
vendored
Executable file
14
node_modules/buetify/lib/composables/labelId/useLabelId.d.ts
generated
vendored
Executable 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>;
|
||||
};
|
||||
Reference in New Issue
Block a user