Lou
2024-01-17 ef51ae09decb4e016a849d8a5d96be7f44dafc4f
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
26
27
<template>
    <view class="">
        <view class="tag-cell f-18 c-main">
            {{text}}
        </view>
    </view>
    
</template>
 
<script>
    export default{
        name:"tagCell",
        props:{
            text:String
        }
    }
</script>
 
<style scoped>
    .tag-cell{
        padding:2rpx 8rpx;
        border-radius: 8rpx;
        background-color: rgb(236,244,255);
        border:1px solid currentColor;
        margin-right:15rpx;
    }
</style>