zj
2024-06-03 cd10c1c4b723da0ae8496bf9c4f68a12e159fd97
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
<template>
  <div class="ready-bg">
    <h2 class="text-white">{{ t("ready-t1") }}</h2>
    <h5 class="text-white">{{ t("ready-d1") }}</h5>
    <el-button class="blue-middle-btn my-4">{{ t("ready-b1") }}</el-button>
  </div>
</template>
 
<script setup>
import { useRoute, useRouter } from "vue-router";
import { useI18n } from "vue-i18n";
 
const route = useRoute();
const { t } = useI18n();
</script>
<style lang="scss" scoped>
.ready-bg {
  background: url(@/assets/forexImages/ready-bg.png) no-repeat center;
  background-size: auto 100%;
  height: 394px;
  width: 100%;
  display: flex;
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
</style>