提交 850d249d authored 作者: 王鹏飞's avatar 王鹏飞

chore: update

上级 94155133
<script lang="ts"> <script setup lang="ts">
export default { name: 'AppMain' } const isIframe = computed(() => {
return window.self !== window.top
})
const padding = computed(() => {
return isIframe.value ? '0 10px' : '10px'
})
</script> </script>
<template> <template>
...@@ -11,7 +17,7 @@ export default { name: 'AppMain' } ...@@ -11,7 +17,7 @@ export default { name: 'AppMain' }
<style> <style>
.app-main { .app-main {
flex: 1; flex: 1;
padding: 10px; padding: v-bind(padding);
overflow: hidden; overflow: hidden;
box-sizing: border-box; box-sizing: border-box;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论