mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-05 01:38:49 +08:00
19 lines
245 B
Markdown
19 lines
245 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Radio v-model="checked">
|
|
是否同意xxxx
|
|
</Radio>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
checked: true,
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |