26 lines
634 B
Vue
26 lines
634 B
Vue
<template>
|
|
<header id="authcontainer_header_navbar_container">
|
|
<Header />
|
|
<Navbar />
|
|
</header>
|
|
<main>
|
|
<router-view></router-view>
|
|
</main>
|
|
</template>
|
|
|
|
<script setup>
|
|
// The Lucia project.
|
|
// Copyright 2023-2026 DSP, inc. All rights reserved.
|
|
// Authors:
|
|
// chiayin.kuo@dsp.im (chiayin), 2023/1/31
|
|
// cindy.chang@dsp.im (Cindy Chang), 2024/5/30
|
|
// imacat.yang@dsp.im (imacat), 2023/9/23
|
|
/**
|
|
* @module views/AuthContainer Layout container for
|
|
* authentication-related pages with header and navbar.
|
|
*/
|
|
|
|
import Header from "@/components/Header.vue";
|
|
import Navbar from "@/components/Navbar.vue";
|
|
</script>
|