2021-07-06 01:12:20 +08:00

11 lines
238 B
Vue

<template>
<div class="app-container">
<p>{{ $t("message.hsmenu1") }}</p>
<router-view v-slot="{ Component }">
<transition>
<component :is="Component" />
</transition>
</router-view>
</div>
</template>