5.10航天ui交易所pc端,代码jiem-pc
lxf
2025-07-11 b20f8b51a1d53125201883371ecfc15fd18a1c3b
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
<!-- 学习外汇-基本面分析 -->
<template>
  <menu-layout :needMenu="false">
    <template v-slot:content>
      <div class="section1">
        <h1>{{ t("m5-tg-a1-s1-t1") }}</h1>
        <h5>{{ t("m5-tg-a1-s1-d1") }}</h5>
      </div>
      <h5 class="my-8" v-html="t('m5-tg-a1-s1-d2')"></h5>
      <div v-for="(item, i) in list12" :key="i">
        <h2 class="fs-24 my-4">{{ t(`m5-tg-a1-s2-${i + 1}-t1`) }}</h2>
        <h5 v-html="t(`m5-tg-a1-s2-${i + 1}-d1`)"></h5>
      </div>
      <ready class="mt-8"></ready>
    </template>
  </menu-layout>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
 
import ready from "@comForex/ready.vue";
const route = useRoute();
const { t } = useI18n();
 
const list12 = Array(12);
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
</style>