搜索结果列表页面开发
This commit is contained in:
16
src/components/FormLabel/FormLabel.vue
Normal file
16
src/components/FormLabel/FormLabel.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="form-label"><slot></slot></div>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import 'devui-theme/styles-var/devui-var.scss';
|
||||
.form-label{
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
color: $devui-text;
|
||||
}
|
||||
</style>
|
||||
16
src/components/FormLabel/FormWeakText.vue
Normal file
16
src/components/FormLabel/FormWeakText.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="form-weak-text"><slot></slot></div>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import 'devui-theme/styles-var/devui-var.scss';
|
||||
.form-weak-text{
|
||||
font-size: 14px;
|
||||
color: $devui-text-weak;
|
||||
white-space: pre-line;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user