1
jhzh
2024-08-12 f1dc8f5a7f3a661ce19513a9ad47fe18e3e883ff
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
<!-- 社交平台交易-MetaTrader信号 -->
<template>
  <menu-layout :collapseList="menu3List">
    <template v-slot:content>
      <section class="section1">
        <h2>{{ t("m3-st-t-ap-s1-t1") }}</h2>
        <h5>{{ t("m3-st-t-ap-s1-d1") }}</h5>
      </section>
      <!-- 使用eypmj API进行交易的好处 -->
      <h2 class="mt-4">{{ t("m3-st-t-ap-s2-t1") }}</h2>
      <div class="flex flex-wrap">
        <card
          v-for="(item, index) in list3"
          :key="index"
          :desc="t(`m3-st-t-ap-s2-${index + 1}`)"
        ></card>
      </div>
 
      <h5 class="mt-4" v-html="t('m3-st-t-ap-s2-d1')"></h5>
      <h5 v-html="t('m3-st-t-ap-s2-d2')"></h5>
    </template>
  </menu-layout>
</template>
 
<script setup>
import { useI18n } from "vue-i18n";
import { menu3List } from "@/utils/path";
import card from "@comForex/menu2/card.vue";
const list3 = Array(3);
 
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
</style>