fix:修复评分组件高级设置显示异常 (#63)
* fix:修复评分组件高级设置显示异常 --------- Co-authored-by: ljm <ljm@addcn.com>
This commit is contained in:
parent
b8c089f3fd
commit
3ef5e75cba
@ -28,7 +28,7 @@ export default defineComponent({
|
|||||||
setup(props, { emit }) {
|
setup(props, { emit }) {
|
||||||
const moduleConfig = inject('moduleConfig');
|
const moduleConfig = inject('moduleConfig');
|
||||||
const optionConfigVisible = ref(false);
|
const optionConfigVisible = ref(false);
|
||||||
|
|
||||||
const addOther = () => {
|
const addOther = () => {
|
||||||
emit('addOther');
|
emit('addOther');
|
||||||
};
|
};
|
||||||
|
@ -14,7 +14,7 @@ export default defineComponent({
|
|||||||
provide() {
|
provide() {
|
||||||
return {
|
return {
|
||||||
currentEditKey: store.getters['edit/currentEditKey'],
|
currentEditKey: store.getters['edit/currentEditKey'],
|
||||||
moduleConfig: this.moduleConfig,
|
moduleConfig: computed(()=>this.moduleConfig),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
|
Loading…
Reference in New Issue
Block a user