naive-ui/demo/documentation/components/radio/zhCN/radio-focus-debug.demo.md
2020-09-03 23:40:38 +08:00

191 B

基础用法

<n-radio
  v-model="value"
  value="Definitely Maybe"
>
  <n-input />
</n-radio>
export default {
  data () {
    return {
      value: null
    }
  }
}