dcc
2024-06-13 3616db170333df7d668c97323344335b52c4153c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- 没有用到-->
<template>
  <div>
    <pc-section class="index-section1 py-12">
      <h2 class="mb-4">{{ t("m5-wh-i-s0-t1") }}</h2>
      <h5>{{ t("m5-wh-i-s0-d1") }}</h5>
    </pc-section>
    <menu-layout :collapseList="menu5List">
      <template v-slot:content> </template>
    </menu-layout>
  </div>
</template>
 
<script setup>
import { useI18n } from "vue-i18n";
import { menu5List } from "@/utils/path";
 
const { t } = useI18n();
</script>
<style lang="scss" scoped></style>