shikeying
2023-04-07 c192f834c4e092bc7c0f2722c343c25c1be619ab
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
<template>
  <div>
    <span class="title">{{ title }}</span>
  </div>
</template>
 
<script>
import { title } from '@/settings'
 
export default {
  data() {
    return {
      title: title
    }
  },
  created() {
  }
}
</script>
 
<style scoped>
  .title {
    line-height: 72px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
  }
</style>