back.vue 401 B

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