25 lines
310 B
Vue
25 lines
310 B
Vue
<template>
|
|
<view>
|
|
<GiftCard/>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import GiftCard from './components/GiftCard.vue'
|
|
export default {
|
|
components: {
|
|
GiftCard
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.top-card{
|
|
width: 710rpx;
|
|
height: 280rpx;
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
}
|
|
|
|
|
|
</style> |