Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
manulife-weapp
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2026-02-14 02:25:03 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d76df336d3ffcb434ff91f64f9b460aaeab1db63
d76df336
1 parent
a583f541
fix(RadioGroup): 更新 JSDoc 注释
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
src/components/plan/PlanFields/RadioGroup.vue
src/components/plan/PlanFields/RadioGroup.vue
View file @
d76df33
...
...
@@ -13,6 +13,7 @@
:key="option"
:label="option"
class="mr-8"
@change="() => emit('change', option)"
>
{{ option }}
</nut-radio>
...
...
@@ -89,7 +90,13 @@ const emit = defineEmits([
* @event update:modelValue
* @param {string} value - 选中的选项
*/
'update:modelValue'
'update:modelValue',
/**
* 选项变化事件
* @event change
* @param {string} value - 选中的选项
*/
'change'
])
/**
...
...
Please
register
or
login
to post a comment