12345678910111213141516171819202122232425 |
- <template>
- <cover-image mode="aspectFit" src="@/static/image/live/gift.png" class="img gift" @click="showgift"/>
- </template>
- <script>
- export default {
- props: {
- },
- data () {
- return {}
- },
- methods: {
- showgift () {
- this.$emit('showGift')
- }
- },
- computed: {}
- }
- </script>
- <style lang="scss" scoped>
- .gift {
- width: 64rpx;
- height: 64rpx;
- }
- </style>
|