import { ref } from 'vue' import RadioButton from './RadioButton.vue' export default { title: 'The Design system/Radio', component: RadioButton, tags: ['autodocs'], args: { isDisabled: false, modelValue: false, onValueChange: undefined, }, } const value = ref(true) const Template = (args: any) => ({ props: Object.keys(args), render() { return (
Радиокнопка