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>
|