2
schangxiang@126.com
2025-05-12 6177ed5cb88df34f2a67d9d0610e3e0dc7030e70
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
28
29
30
31
32
33
34
35
36
37
<template>
  <div class="head-tag">
    {{ title }}
  </div>
</template>
    
  <script lang="ts">
import { defineComponent } from 'vue'
 
export default defineComponent({
  name: 'HeadTag',
  props: {
    title: {
      type: String,
      default: '',
    },
  },
  setup() {
    return {}
  },
})
</script>
      
  <style lang="scss" scoped>
.head-tag {
  width: 74px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background: #f3f3f3;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  font-size: 14px;
  color: #333333;
  font-weight: bold;
}
</style>