陈婷婷
2026-04-03 e3ad877d4f643e0a9207a42fb5e23d1fb40f7c30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <!-- 仅包含路由出口,无任何其他元素 i节点相关元素使用-->
  <router-view />
</template>
 
<script>
export default {
  name: "EmptyLayout",
};
</script>
 
<!-- 清除默认样式影响 -->
<style scoped>
::v-deep #app {
  padding: 0 !important;
  margin: 0 !important;
}
</style>