18 lines
235 B
Vue
18 lines
235 B
Vue
<template>
|
|
<view class="root">
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.root {
|
|
width: 100%;
|
|
height: calc(100% - 300rpx);
|
|
background-color: magenta;
|
|
position: absolute;
|
|
z-index: 4;
|
|
}
|
|
</style> |