naive-ui/demo/documentation/components/radio/zhCN/radio-focus-debug.demo.md

20 lines
205 B
Markdown
Raw Normal View History

# 基础用法
```html
<n-radio
2020-09-29 00:56:27 +08:00
v-model:checked-value="value"
value="Definitely Maybe"
>
<n-input />
</n-radio>
```
```js
export default {
data () {
return {
value: null
}
}
}
```