mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
423 B
423 B
layout |
---|
templateLayout |
<template>
<Radio-group v-model="value2" vertical>
<Radio value="1">
apple
</Radio>
<Radio value="2">
android
</Radio>
<Radio value="3">
github
</Radio>
</Radio-group>
</template>
<script>
export default {
data() {
return {
value2: '1',
}
},
}
</script>