<router-view />下面增加一个<div style="height: 5rem;"></div>

Vant底部tabbar盖住内容怎么解

 

 参考

<template>
  <div >
    <router-view />
    <div style="height: 5rem;"></div>
  </div>
</template>

<script>
export default {
  name: 'App'
}
</script>

<style lang="less">
.size {
  width: 100%;
  height: 100%;
}
#html,
#body {
  .size;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#app {
  .size;
}
</style>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2022-12-23
  • 2022-02-08
  • 2021-12-18
  • 2021-10-30
  • 2021-11-30
猜你喜欢
  • 2022-12-23
  • 2021-10-24
  • 2022-12-23
  • 2021-04-27
  • 2022-12-23
  • 2021-06-27
  • 2021-09-22
相关资源
相似解决方案