refactor: ♻️ 组件样式优化

Former-commit-id: c2c03e83483b2f4646adb018859e82de6b60f1e1
This commit is contained in:
haoxr
2023-05-17 04:34:09 +08:00
parent 63c4a2a86d
commit 1a19253865
4 changed files with 31 additions and 19 deletions

View File

@@ -2,22 +2,18 @@
<template>
<div class="app-container">
<iframe
id="apidoc-iframe"
src="https://www.apifox.cn/apidoc/shared-195e783f-4d85-4235-a038-eec696de4ea5"
width="100%"
height="100%"
frameborder="0"
></iframe>
</div>
</template>
<style lang="scss" scoped>
#apidoc-iframe {
height: calc(100vh - 100px);
}
.hasTagsView {
#apidoc-iframe {
height: calc(100vh - 140px);
}
.app-container {
display: flex;
flex-direction: column;
height: calc(100vh - 124px);
}
</style>

View File

@@ -1,11 +1,11 @@
<!-- wangEditor富文本编辑器示例 -->
<script setup lang="ts">
import Editor from '@/components/WangEditor/index.vue';
const value = ref('初始内容');
import Editor from "@/components/WangEditor/index.vue";
const value = ref("初始内容");
</script>
<template>
<div class="app-container">
<editor v-model="value" style="height: 600px" />
<editor v-model="value" style="height: calc(100vh - 124px)" />
</div>
</template>