|
@@ -4,6 +4,7 @@ import Header from './header'
|
|
|
import ActionBar from './action-bar'
|
|
|
import runtime, * as RuntimeUtils from './runtime'
|
|
|
import { removeMedia } from './helpers'
|
|
|
+import styles from './index.module.less'
|
|
|
|
|
|
const videoRef = ref<HTMLVideoElement | null>(null)
|
|
|
|
|
@@ -61,9 +62,9 @@ export default defineComponent({
|
|
|
},
|
|
|
render() {
|
|
|
return (
|
|
|
- <div>
|
|
|
+ <div class={styles.main}>
|
|
|
<Header/>
|
|
|
- <video ref={videoRef}></video>
|
|
|
+ <video class={styles.video} ref={videoRef}></video>
|
|
|
<ActionBar/>
|
|
|
<div>video: {runtime.videoStatus}, imStatus: {runtime.imConnectStatus}</div>
|
|
|
</div>
|