deming/pageB/zhibo/index.vue
2020-07-27 17:32:17 +08:00

38 lines
763 B
Vue

<template>
<view>
<video :src="url" class="vodio" autoplay="true">
</video>
<!-- <view class="user">
<view class="back"></view>
<image></image>
<view>
<text class="name">萨和登</text>
<text class="info">萨大赛大赛大赛大赛大</text>
</view>
<view class="guanzhu">
关注
</view >
</view> -->
</view>
</template>
<style lang="scss" scoped>
.vodio{
width: 100vw;
height: 100vh;
}
</style>
<script>
export default {
name:"zhibo",
data(){
return {
url:""
}
},
onLoad(a){
this.url = a.url
console.log(this.url)
}
}
</script>