26 lines
402 B
Vue
26 lines
402 B
Vue
<template>
|
|
<div class="seller-dashboard-index">
|
|
seller-dashboard-index
|
|
|
|
<div class="view">
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
</script>
|
|
<style scoped lang="less">
|
|
.seller-dashboard-index {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
> .view {
|
|
flex: 1;
|
|
}
|
|
}
|
|
</style>
|