Feature: 页面内Markdown渲染 & 规格参数表格

This commit is contained in:
2025-08-16 13:57:17 +08:00
parent c77b2282da
commit daa91ac56f
10 changed files with 221 additions and 36 deletions

View File

@ -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>