You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
352 B
16 lines
352 B
11 months ago
|
import { inject } from 'vue';
|
||
|
import '../../tokens/index.mjs';
|
||
|
import { elFormKey, elFormItemKey } from '../../tokens/form.mjs';
|
||
|
|
||
|
const useFormItem = () => {
|
||
|
const form = inject(elFormKey, void 0);
|
||
|
const formItem = inject(elFormItemKey, void 0);
|
||
|
return {
|
||
|
form,
|
||
|
formItem
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export { useFormItem };
|
||
|
//# sourceMappingURL=index.mjs.map
|