1
lzhe
2024-06-06 4c810c1feb3f78c458084d73e89adc6c4f2256f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
    <div class="sc-title">
        {{title}}
    </div>
</template>
 
<script>
    export default {
        props: {
            title: { type: String, required: true, default: "" },
        },
        data() {
            return {
 
            }
        },
        computed: {
 
        }
    }
</script>
 
<style scoped>
    .sc-title {border-bottom: 1px solid #eee;margin-bottom: 20px;font-size: 17px;padding-bottom: 15px;color: #3c4a54;font-weight: bold;}
</style>