交易所前端蓝色ui 4.5 jiem
dcc
2024-06-13 fad052d0879be9d0bf85794ad686d4badaedd864
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
<!-- 学习交易差价合约 -->
<template>
  <menu-layout :collapseList="menu5List">
    <template v-slot:content>
      <div>
        <div class="section1">
          <h2>{{ t("m5-ltc-s1-t1") }}</h2>
          <h5>{{ t("m5-ltc-s1-d1") }}</h5>
        </div>
        <div v-for="(_, i) in list6" :key="i">
          <h2 class="fs-32 mt-4" v-html="t(`m5-ltc-s2-${i + 1}-t1`)"></h2>
          <h5 v-html="t(`m5-ltc-s2-${i + 1}-d1`)"></h5>
        </div>
        <ready class="mt-8"></ready>
      </div>
    </template>
  </menu-layout>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
import { menu5List } from "@/utils/path";
import ready from "@comForex/ready.vue";
const route = useRoute();
const { t } = useI18n();
 
const list6 = Array(6);
 
const gotoPage = () => {};
</script>
<style lang="scss" scoped>
.section1 {
  border-bottom: 1px solid #d8dee1;
  padding-bottom: 12px;
}
</style>