42 lines
896 B
Vue
42 lines
896 B
Vue
<template>
|
|
<n-flex class="container" :wrap="false">
|
|
<n-flex vertical class="menu">
|
|
<n-button secondary @click="$router.push({ name: 'home' })">
|
|
返回
|
|
</n-button>
|
|
<n-button
|
|
v-for="item in menu"
|
|
:type="$route.name === item.name ? 'primary' : 'default'"
|
|
@click="$router.push({ name: item.name })"
|
|
>
|
|
{{ item.label }}
|
|
</n-button>
|
|
</n-flex>
|
|
<n-flex class="content">
|
|
<router-view></router-view>
|
|
</n-flex>
|
|
</n-flex>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
const menu = [
|
|
{ label: "教程", name: "tutorial" },
|
|
{ label: "用户", name: "user-manage" },
|
|
]
|
|
</script>
|
|
<style scoped>
|
|
.container {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
box-sizing: border-box;
|
|
}
|
|
.menu {
|
|
width: 100px;
|
|
padding: 10px 0 10px 10px;
|
|
}
|
|
.content {
|
|
box-sizing: border-box;
|
|
width: calc(100vw - 100px);
|
|
overflow: hidden;
|
|
}
|
|
</style>
|