18 lines
243 B
Vue
18 lines
243 B
Vue
|
<template>
|
||
|
<div class="bottom-view">
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.bottom-view {
|
||
|
width: 100%;
|
||
|
height: 335px;
|
||
|
background: green;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
</style>
|