Skip to content

Commit

Permalink
fix(Admin):[reset] 修复了设计问卷选择题选项传参丢失的问题 (#56)
Browse files Browse the repository at this point in the history
* style:优化代码格式

* feat(axios):新增axios依赖

* fix(Admin):[reset] 修复了设计问卷选择题选项传参丢失的问题

* Update package.json
  • Loading branch information
xixiIBN5100 authored Aug 15, 2024
1 parent eb8b0bb commit 5de0a49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "text-ci",
"version": "0.1.2",
"version": "0.1.3",
"private": true,
"type": "module",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/pages/DetailInfo/radio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ watch(localOtherOption, (newOtherOption) => {
emits('update:otherOption', newOtherOption);
});
watch(localOptions, (newOptions) => {
watch(localOptions.value, (newOptions) => {
console.log(localOptions.value)
emits('update:options', newOptions);
});
</script>
Expand Down

0 comments on commit 5de0a49

Please sign in to comment.