mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
14 lines
164 B
Vue
14 lines
164 B
Vue
<template>
|
|
<div>
|
|
<Radio>Radio</Radio>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { Radio } from 'antd'
|
|
export default {
|
|
components: {
|
|
Radio,
|
|
},
|
|
}
|
|
</script>
|