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