he wei
2025-04-09 850af610b190eeabbd05eba3291fe359775676af
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
40
41
42
43
44
45
46
<template>
  <div class="contain">
    <div class="info">
      <text-rotate
        v-if="isStandard"
        :content="$t('other.Welcome')"
      ></text-rotate>
    </div>
  </div>
</template>
 
<script>
import TextRotate from "@/components/TextRotate";
import config from "@/assets/js/config.js";
const { isStandard } = config;
export default {
  name: "",
 
  data() {
    return {
      isStandard,
    };
  },
  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>