This commit is contained in:
iqudoo
2026-06-05 17:22:32 +08:00
commit eb4e8f1a04
90 changed files with 21224 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<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>