mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 17:07:19 +08:00
11 lines
238 B
Vue
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>
|