hookehuyr

fix

......@@ -56,7 +56,7 @@ const ReadonlyShow = computed(() => {
onMounted(() => {
// 只读模式下默认值替换换行符
props.item.value = item.component_props.readonly ? props.item.component_props.default?.replace(/\n/g, "<br>") : props.item.component_props.default;
props.item.value = props.item.component_props.readonly ? props.item.component_props.default?.replace(/\n/g, "<br>") : props.item.component_props.default;
})
</script>
......