UNPKG

element-plus

Version:

A Component Library for Vue 3

18 lines (15 loc) 421 B
import { pick } from 'lodash-unified'; import { buildProps } from '../../utils/vue/props/runtime.mjs'; const ariaProps = buildProps({ ariaLabel: String, ariaOrientation: { type: String, values: ["horizontal", "vertical", "undefined"] }, ariaControls: String }); const useAriaProps = (arias) => { return pick(ariaProps, arias); }; export { ariaProps, useAriaProps }; //# sourceMappingURL=index.mjs.map