29 lines
480 B
Vue
29 lines
480 B
Vue
<template>
|
|
<view class="chat-more-message-invitation">
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
// 页面加载时执行
|
|
},
|
|
methods: {
|
|
// 方法定义
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.chat-more-message-invitation {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 40rpx;
|
|
}
|
|
</style> |