Skip to content

Commit

Permalink
Fixed VueJS build
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 committed Nov 13, 2024
1 parent dcdce35 commit 6c24536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/survey-creator-vue/src/tabs/designer/Row.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ const model = useCreatorModel(
);
onMounted(() => {
model.subscribeElementChanges();
model.value && model.value.subscribeElementChanges();
});
onUnmounted(() => {
model.unsubscribeElementChanges();
model.value && model.value.unsubscribeElementChanges();
});
</script>

0 comments on commit 6c24536

Please sign in to comment.