<!-- 没有用到-->
|
<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>
|