24 lines
356 B
Vue
24 lines
356 B
Vue
<template>
|
|
<div v-if="field.tips" class="iview-form-tips">
|
|
<div v-html="field.tips" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
field: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.iview-form-tips {
|
|
font-size: 12px;
|
|
color: #999;
|
|
text-align: left;
|
|
padding: 4px 0;
|
|
}
|
|
</style>
|