Files
miniapp/pages/im/index.vue
T
2023-09-26 17:53:59 +08:00

24 lines
352 B
Vue

<template>
<view class="">
<web-view :src="sendImg"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
name: "",
sendImg: ""
}
},
onLoad: function() {
// this.name = this.$store.state.user.name;
this.sendImg = `https://txroom.xayunmei.com`
},
}
</script>
<style lang="scss" scoped>
</style>