/*! For license information please see 9563.545fa3bc.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["9563"],{44343:function(s,a,n){"use strict";n.r(a);var t=n("80681");let l=["innerHTML"];a.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Single selection among multiple options.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { RadioGroup, Radio } from 'vant';\n\nconst app = createApp();\napp.use(Radio);\napp.use(RadioGroup);\n
\nUse v-model
to bind the name of checked radio.
<van-radio-group v-model="checked">\n <van-radio name="1">Radio 1</van-radio>\n <van-radio name="2">Radio 2</van-radio>\n</van-radio-group>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const checked = ref('1');\n return { checked };\n },\n};\n
\n<van-radio-group v-model="checked" direction="horizontal">\n <van-radio name="1">Radio 1</van-radio>\n <van-radio name="2">Radio 2</van-radio>\n</van-radio-group>\n
\n<van-radio-group v-model="checked" disabled>\n <van-radio name="1">Radio 1</van-radio>\n <van-radio name="2">Radio 2</van-radio>\n</van-radio-group>\n
\n<van-radio-group v-model="checked" shape="square">\n <van-radio name="1">Radio 1</van-radio>\n <van-radio name="2">Radio 2</van-radio>\n</van-radio-group>\n\n<van-radio-group v-model="checked" shape="dot">\n <van-radio name="1">Radio 1</van-radio>\n <van-radio name="2">Radio 2</van-radio>\n</van-radio-group>\n
\n<van-radio-group v-model="checked">\n <van-radio name="1" checked-color="#ee0a24">Radio 1</van-radio>\n <van-radio name="2" checked-color="#ee0a24">Radio 2</van-radio>\n</van-radio-group>\n
\n<van-radio-group v-model="checked">\n <van-radio name="1" icon-size="24px">Radio 1</van-radio>\n <van-radio name="2" icon-size="24px">Radio 2</van-radio>\n</van-radio-group>\n
\nUse icon slot to custom icon
\n<van-radio-group v-model="checked">\n <van-radio name="1">\n Radio 1\n <template #icon="props">\n <img class="img-icon" :src="props.checked ? activeIcon : inactiveIcon" />\n </template>\n </van-radio>\n <van-radio name="2">\n Radio 2\n <template #icon="props">\n <img class="img-icon" :src="props.checked ? activeIcon : inactiveIcon" />\n </template>\n </van-radio>\n</van-radio-group>\n\n<style>\n .img-icon {\n height: 20px;\n }\n</style>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const checked = ref('1');\n return {\n checked,\n activeIcon:\n 'https://fastly.jsdelivr.net/npm/@vant/assets/user-active.png',\n inactiveIcon:\n 'https://fastly.jsdelivr.net/npm/@vant/assets/user-inactive.png',\n };\n },\n};\n
\nSet label-position
prop to \'left\'
to adjust the label position to the left of the Radio.
<van-radio-group v-model="checked">\n <van-radio name="1" label-position="left">Radio 1</van-radio>\n <van-radio name="2" label-position="left">Radio 2</van-radio>\n</van-radio-group>\n
\n<van-radio-group v-model="checked">\n <van-radio name="1" label-disabled>Radio 1</van-radio>\n <van-radio name="2" label-disabled>Radio 2</van-radio>\n</van-radio-group>\n
\n<van-radio-group v-model="checked">\n <van-cell-group inset>\n <van-cell title="Radio 1" clickable @click="checked = '1'">\n <template #right-icon>\n <van-radio name="1" />\n </template>\n </van-cell>\n <van-cell title="Radio 2" clickable @click="checked = '2'">\n <template #right-icon>\n <van-radio name="2" />\n </template>\n </van-cell>\n </van-cell-group>\n</van-radio-group>\n
\nThe component exports the following type definitions:
\nimport type {\n RadioProps,\n RadioShape,\n RadioGroupProps,\n RadioLabelPosition,\n RadioGroupDirection,\n} from 'vant';\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
name | \nRadio name, usually a unique string or number | \nany | \n- | \n
shape | \nCan be set to square dot | \nstring | \nround | \n
disabled | \nWhether to disable radio | \nboolean | \nfalse | \n
label-disabled | \nWhether to disable label click | \nboolean | \nfalse | \n
label-position | \nCan be set to left | \nstring | \nright | \n
icon-size | \nIcon size | \nnumber | string | \n20px | \n
checked-color | \nChecked color | \nstring | \n#1989fa | \n
Attribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
v-model | \nName of checked radio | \nany | \n- | \n
disabled | \nDisable all radios | \nboolean | \nfalse | \n
direction | \nDirection, can be set to horizontal | \nstring | \nvertical | \n
icon-size | \nIcon size of all radios | \nnumber | string | \n20px | \n
checked-color | \nChecked color of all radios | \nstring | \n#1989fa | \n
shape v4.6.3 | \nCan be set to square dot | \nstring | \nround | \n
Event | \nDescription | \nParameters | \n
---|---|---|
click | \nEmitted when radio is clicked | \nevent: MouseEvent | \n
Event | \nDescription | \nParameters | \n
---|---|---|
change | \nEmitted when value changed | \nname: string | \n
Name | \nDescription | \nSlotProps | \n
---|---|---|
default | \nCustom label | \n{ checked: boolean, disabled: boolean } | \n
icon | \nCustom icon | \n{ checked: boolean, disabled: boolean } | \n
The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-radio-size | \n20px | \n- | \n
--van-radio-dot-size | \n8px | \nThe distance between the dot and the border | \n
--van-radio-border-color | \nvar(--van-gray-5) | \n- | \n
--van-radio-duration | \nvar(--van-duration-fast) | \n- | \n
--van-radio-label-margin | \nvar(--van-padding-xs) | \n- | \n
--van-radio-label-color | \nvar(--van-text-color) | \n- | \n
--van-radio-checked-icon-color | \nvar(--van-primary-color) | \n- | \n
--van-radio-disabled-icon-color | \nvar(--van-gray-5) | \n- | \n
--van-radio-disabled-label-color | \nvar(--van-text-color-3) | \n- | \n
--van-radio-disabled-background | \nvar(--van-border-color) | \n- | \n