# RadioButton(单选-按钮形式)

# 使用范围

ui、行为、规则组件通用

# 使用方式

config:{
  scene: {
    text: '场景',
    type: 'RadioButton',
    options: [
      {
        text: '进入页面',
        value: 'In'
      },
      {
        text: '离开页面',
        value: 'Out'
      }
    ]
  }
}

# 特有参数

参数 说明 类型 可选值 默认值 是否必填
options 选项内容 boolean string[] []

# 效果

xes-save