name
Description
Specifies. Sets the name of a group a radio button belongs toUsage
name?: string;
Example
<template>
<RadioButton label="Option 1" inputValue="1" :value="true" name="group1" />
<RadioButton label="Option 2" inputValue="2" name="group1" />
</template>
Related article: Grouping radio buttons via the name property
Related sample: Radio Button