31 lines
436 B
Plaintext
31 lines
436 B
Plaintext
<template>
|
|
<div class="center-column" @click="jumptonve">
|
|
<!-- 视频播放组件 -->
|
|
<MonitorControlView ref="monitor" init="5" style="width: 170px;height: 170px;" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.center-column {
|
|
width: 170px;
|
|
height: 170px;
|
|
/* background-color: red; */
|
|
border-radius: 80px;
|
|
}
|
|
</style> |