12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="mine-card">
- <mine-card></mine-card>
- <view class="tips">
- 商城名片(方便买家在商城联系您)
- </view>
- </view>
- </template>
- <script>
- import MineCard from './components/mine-card.vue'
- export default {
- components: {
- MineCard,
- },
- data() {
- return {}
- },
- }
- </script>
- <style lang="scss" scoped>
- .mine-card {
- width: 100vw;
- height: 100vh;
- padding: 48rpx 24rpx;
- box-sizing: border-box;
- .tips {
- color: #999999;
- font-size: 24rpx;
- margin-top: 24rpx;
- }
- }
- </style>
|