24 lines
352 B
Vue
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> |