he wei
2022-11-13 b4816f6294646157b50bb49f1d19eaf306e0ac8c
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
38
39
<template>
  <div class="contain">
    <div class="info">
      <text-rotate content="欢迎使用福光内阻测试分析软件"></text-rotate>
    </div>
  </div>
</template>
 
<script>
import TextRotate from '@/components/TextRotate'
export default {
  name: "",
 
  data() {
    return {};
  },
  components: {
    TextRotate
  },
  methods: {},
 
  mounted() {},
};
</script>
 
<style lang="less" scoped>
.contain {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  .info {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 2px #333;
  }
}
</style>