Files
011-ai-interview/frontend/src/layouts/InterviewLayout.vue
2026-01-23 13:57:48 +08:00

20 lines
375 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
</script>
<template>
<div class="interview-layout min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100">
<RouterView />
</div>
</template>
<style scoped>
.interview-layout {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
</style>