dma_handbook/docs/.vuepress/layouts/LoginLayout.vue

10 lines
169 B
Vue
Raw Normal View History

2026-02-05 10:24:40 +08:00
<template>
<!-- 直接渲染登录组件 -->
<Login />
</template>
<script setup>
// 导入你的登录组件
import Login from '../components/Login.vue'
</script>