Feature: 页面内Markdown渲染 & 规格参数表格
This commit is contained in:
@ -1,13 +1,35 @@
|
||||
<template>
|
||||
<el-container>
|
||||
<el-header>
|
||||
<el-container class="app-container">
|
||||
<el-header class="page-header">
|
||||
<jinshen-header />
|
||||
</el-header>
|
||||
<el-main>
|
||||
<el-main class="main-content">
|
||||
<slot />
|
||||
</el-main>
|
||||
<el-footer>
|
||||
<el-footer class="page-footer">
|
||||
<jinshen-footer />
|
||||
</el-footer>
|
||||
</el-container>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.app-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.page-footer {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user