例子:
<template>
<div style="height:60px">
<di class="a-bottom a-white">
...
</div>
</div>
</template>
<style>
.a-bottom {
position: fixed;
bottom: 0;
left: 0;
padding:8px;
width:100%;
}
.a-white {
background:white;
}
</style>
以这个例子为例,外面再套一层div就能实现占据位置了,固定位置就用fixed。