29 lines
365 B
Vue
29 lines
365 B
Vue
<template>
|
|
<view class="container">
|
|
<view class="containertop">
|
|
<view class="containertopbox">
|
|
<view class=""></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.container{
|
|
.containertop{
|
|
padding:48rpx 32rpx;
|
|
.containertopbox{
|
|
|
|
}
|
|
}
|
|
}
|
|
</style>
|