Files
AIProd/layouts/login.vue
2025-10-10 10:41:39 +08:00

18 lines
230 B
Vue

<template>
<div id="login-layout">
<Nuxt></Nuxt>
</div>
</template>
<script>
export default {
name: 'Login'
}
</script>
<style lang="scss" scoped>
#login-layout {
width: 100%;
height: 100%;
}
</style>