问题如下所示
都是默认定位,没有ajax请求。
第一个问题:为什么首页的header部分被挤下来了?
第二个问题:为什么切换的时候,内容都没有了?点击首页的时候,分类页面内容消失,切换到首页页面的过程中,首页内容也是为空,等到完全切换之后,才显示。
大致布局如下
Home组件
<template>
<div class="home">
<header class="home-header">
// header内容
</header>
<div class="scroll-box">
// 中间内容部分
</div>
</div>
</template>
CSS
.home-header{
background: #f2f2f2;
}
.scroll-box{
position: absolute;
left: 0;
right: 0;
top: 2.3833rem;
bottom: 1.43rem;
overflow-y: auto;
}