mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
19 lines
381 B
Vue
19 lines
381 B
Vue
|
<template>
|
||
|
<el-radio v-model="radio" disabled label="disabled">Option A</el-radio>
|
||
|
<el-radio v-model="radio" disabled label="selected and disabled"
|
||
|
>Option B</el-radio
|
||
|
>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, ref } from 'vue'
|
||
|
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
return {
|
||
|
radio: ref('selected and disabled'),
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|