Files
layui/example/docs/zh-CN/components/radio.md

2.2 KiB

::: anchor :::

::: title 基础使用 :::

::: demo

写作 画画 运动 <script> import { ref } from 'vue' export default { setup() { const selected1 = ref("1"); return { selected1 } } } </script>

:::

::: title 禁用状态 :::

::: demo

写作 画画 运动 禁用 <script> import { ref } from 'vue' export default { setup() { const disabled = ref(true); const selected2 = ref("1"); return { disabled, selected2 } } } </script>

:::

::: title 事件回调 :::

::: demo

写作 画画 运动 <script> import { ref } from 'vue' export default { setup() { const selected3 = ref("1"); const change = function( current ) { console.log("当前值:" + current) } return { selected3, change } } } </script>

:::

::: title 单选框属性 :::

::: table

属性 描述 默认值
name 原始属性 name --
label 当前值 --
v-model 选中值 --

:::

::: title 单选框事件 :::

::: table

事件 描述 参数
change 切换事件 current : 当前值

:::

::: comment :::