16 lines
241 B
Vue
16 lines
241 B
Vue
<script lang="ts" setup>
|
|
import { nav } from './config'
|
|
|
|
definePageMeta({
|
|
requiresAuth: true,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<AppPageWithSidebar :sidebar-nav="nav">
|
|
<h1>quiz</h1>
|
|
</AppPageWithSidebar>
|
|
</template>
|
|
|
|
<style scoped></style>
|