You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
772 B
46 lines
772 B
<template>
|
|
<el-scrollbar>
|
|
<el-config-provider>
|
|
<NuxtLayout :name="layout">
|
|
<NuxtPage></NuxtPage>
|
|
</NuxtLayout>
|
|
</el-config-provider>
|
|
<!-- AppConf-->
|
|
</el-scrollbar>
|
|
</template>
|
|
<script setup lang="ts">
|
|
// import TabLayout from "~/layouts/TabLayout.vue";
|
|
|
|
const layout = 'tab-layout'
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
$prefix-cls: '#{$name-prefix}-mai-wrap';
|
|
|
|
.#{$prefix-cls} {
|
|
padding: 110px 120px;
|
|
|
|
&-content {
|
|
margin-top: -60px;
|
|
margin-left: 50px;
|
|
width: calc(100% - 300px);
|
|
h2 {
|
|
font-size: 36px;
|
|
line-height: 50px;
|
|
font-weight: 600;
|
|
margin-bottom: 47px;
|
|
}
|
|
}
|
|
|
|
&.full{
|
|
padding: 110px 290px;
|
|
.#{$prefix-cls}-content{
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
</style>
|