fix:修复评分组件高级设置显示异常 (#63)

* fix:修复评分组件高级设置显示异常
---------

Co-authored-by: ljm <ljm@addcn.com>
This commit is contained in:
chaorenluo 2024-02-29 16:09:47 +08:00 committed by zhujunbei
parent 5415daf906
commit 67d85f9ee1
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ export default defineComponent({
setup(props, { emit }) {
const moduleConfig = inject('moduleConfig');
const optionConfigVisible = ref(false);
const addOther = () => {
emit('addOther');
};

View File

@ -14,7 +14,7 @@ export default defineComponent({
provide() {
return {
currentEditKey: store.getters['edit/currentEditKey'],
moduleConfig: this.moduleConfig,
moduleConfig: computed(()=>this.moduleConfig),
};
},
props: {