|
@@ -1,48 +0,0 @@
|
|
|
-<template>
|
|
|
- <div id="video">
|
|
|
- <el-row>
|
|
|
- <el-col :span="24" class="main">
|
|
|
- <div class="w_1200">
|
|
|
- <el-col :span="24" class="video">
|
|
|
- <iframe src="videoLive.html" style="width:100%;height:100%"></iframe>
|
|
|
- </el-col>
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </div>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script>
|
|
|
-import { mapState, createNamespacedHelpers } from 'vuex';
|
|
|
-export default {
|
|
|
- metaInfo() {
|
|
|
- return { title: this.$route.meta.title };
|
|
|
- },
|
|
|
- name: 'video',
|
|
|
- props: {},
|
|
|
- components: {},
|
|
|
- data: function() {
|
|
|
- return {};
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.search();
|
|
|
- },
|
|
|
- methods: {
|
|
|
- search() {},
|
|
|
- },
|
|
|
- computed: {
|
|
|
- ...mapState(['user']),
|
|
|
- },
|
|
|
- watch: {},
|
|
|
-};
|
|
|
-</script>
|
|
|
-
|
|
|
-<style lang="less" scoped>
|
|
|
-.main {
|
|
|
- .video {
|
|
|
- width: 500px;
|
|
|
- height: 300px;
|
|
|
- border: 1px solid red;
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|