1234567891011121314151617181920212223242526272829 |
- import { createVNode as _createVNode, mergeProps as _mergeProps, resolveDirective as _resolveDirective } from "vue";
- // Components
- import { makeVSelectionControlProps, VSelectionControl } from "../VSelectionControl/VSelectionControl.mjs"; // Utilities
- import { genericComponent, propsFactory, useRender } from "../../util/index.mjs"; // Types
- export const makeVRadioProps = propsFactory({
- ...makeVSelectionControlProps({
- falseIcon: '$radioOff',
- trueIcon: '$radioOn'
- })
- }, 'VRadio');
- export const VRadio = genericComponent()({
- name: 'VRadio',
- props: makeVRadioProps(),
- setup(props, _ref) {
- let {
- slots
- } = _ref;
- useRender(() => {
- const controlProps = VSelectionControl.filterProps(props);
- return _createVNode(VSelectionControl, _mergeProps(controlProps, {
- "class": ['v-radio', props.class],
- "style": props.style,
- "type": "radio"
- }), slots);
- });
- return {};
- }
- });
- //# sourceMappingURL=VRadio.mjs.map
|