登录页开发,控制台页面开发,页面跳转逻辑调整
This commit is contained in:
32
zyplayer-doc-ui/wiki-ui/src/views/wiki/Wiki.vue
Normal file
32
zyplayer-doc-ui/wiki-ui/src/views/wiki/Wiki.vue
Normal file
@@ -0,0 +1,32 @@
|
||||
<template>
|
||||
<div class="space-create-box">
|
||||
<CreateRow></CreateRow>
|
||||
</div>
|
||||
<div class="space-view-box">
|
||||
<Whole></Whole>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import CreateRow from './space/CreateRow.vue'
|
||||
import Whole from './space/Whole.vue'
|
||||
import {onMounted, watch} from 'vue';
|
||||
import {useRoute} from "vue-router";
|
||||
|
||||
let route = useRoute();
|
||||
onMounted(() => {
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.space-create-box {
|
||||
z-index: 101;
|
||||
position: relative;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.space-view-box {
|
||||
height: calc(100vh - 130px);
|
||||
overflow-y: auto;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user