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