27 lines
348 B
Vue
27 lines
348 B
Vue
<template>
|
|
<div class="bottom-box">
|
|
111
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
mes: '1111'
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.bottom-box{
|
|
width: 100%;
|
|
height: 95px;
|
|
background-color: #ACACAC;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|