22 lines
247 B
Vue
22 lines
247 B
Vue
<template>
|
|
<view>
|
|
<view class="top-card"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.top-card{
|
|
width: 710rpx;
|
|
height: 280rpx;
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
}
|
|
|
|
|
|
</style> |