mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
245 B
245 B
layout |
---|
templateLayout |
<template>
<Radio v-model="checked">
是否同意xxxx
</Radio>
</template>
<script>
export default {
data() {
return {
checked: true,
}
},
}
</script>