fix: 全局格式化

This commit is contained in:
Tim
2025-08-11 18:16:13 +08:00
parent 31cff70f63
commit 1c4df40f12
76 changed files with 1442 additions and 939 deletions

View File

@@ -23,7 +23,6 @@
</div>
</template>
<script>
export default {
name: 'BaseInput',
@@ -32,7 +31,7 @@ export default {
modelValue: { type: [String, Number], default: '' },
icon: { type: String, default: '' },
type: { type: String, default: 'text' },
textarea: { type: Boolean, default: false }
textarea: { type: Boolean, default: false },
},
emits: ['update:modelValue'],
computed: {
@@ -42,9 +41,9 @@ export default {
},
set(val) {
this.$emit('update:modelValue', val)
}
}
}
},
},
},
}
</script>
@@ -75,7 +74,7 @@ export default {
outline: none;
width: 100%;
font-size: 14px;
resize: none;
resize: none;
background-color: transparent;
color: var(--text-color);
}