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
<template>
  <div class="contact">
    <div class="title">{{ $t("contactus") }}</div>
    <div class="">{{ $t("FuguangElectronics") }}</div>
    <div class="">{{ $t("Address") }}</div>
    <div class="">{{ $t("Tel") }}</div>
  </div>
</template>
 
<script>
import i18n from "./i18n/contact";
import { createI18nOption } from "@/assets/js/tools/i18n";
 
const i18nMixin = createI18nOption(i18n);
export default {
  name: "",
  mixins: [i18nMixin],
  data() {
    return {};
  },
  components: {},
  methods: {},
 
  mounted() {},
};
</script>
 
<style lang="less" scoped>
.contact {
  color: #fff;
  text-align: left;
  padding-left: 1em;
  padding-top: 0.6em;
  .title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0.4em;
  }
}
</style>