mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-09-24 09:02:10 +08:00
21 lines
445 B
Vue
21 lines
445 B
Vue
<template>
|
|
<span v-if="model">{{ model[name] }}</span>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { DisplayConfig, FieldProps } from '../schema';
|
|
import { useAddField } from '../utils/useAddField';
|
|
|
|
defineOptions({
|
|
name: 'MFormDisplay',
|
|
});
|
|
|
|
const props = defineProps<FieldProps<DisplayConfig>>();
|
|
|
|
if (props.config.initValue && props.model) {
|
|
props.model[props.name] = props.config.initValue;
|
|
}
|
|
|
|
useAddField(props.prop);
|
|
</script>
|