chenhaozhe
2025-11-17 4dbcd7bdc7ff4d39949dfafcca7f62dec9b425ce
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>