18 lines
230 B
Vue
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> |