goods.vue 406 B

12345678910111213141516171819202122232425
  1. <template>
  2. <cover-image mode="aspectFit" src="@/static/image/live/goods.png" class="img goods" @click="showgoods"/>
  3. </template>
  4. <script>
  5. export default {
  6. props: {
  7. },
  8. data () {
  9. return {}
  10. },
  11. methods: {
  12. showgoods () {
  13. this.$emit('showgoods')
  14. }
  15. },
  16. computed: {}
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .goods {
  21. width: 64rpx;
  22. height: 64rpx;
  23. }
  24. </style>