Files
monitor/src/App.vue

28 lines
594 B
Vue
Raw Normal View History

2022-09-15 09:01:22 +08:00
<template>
2022-11-28 16:44:51 +08:00
<CameraList />
2023-03-29 14:38:13 +08:00
<!-- <CameraItem-->
<!-- name="测试球机视频"-->
<!-- source="https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv"-->
<!-- />-->
2022-09-15 09:01:22 +08:00
</template>
<script>
2022-11-28 16:44:51 +08:00
import CameraList from "./components/CameraList.vue";
2023-03-29 14:38:13 +08:00
// import CameraItem from "@/components/CameraItem.vue";
2022-11-28 16:44:51 +08:00
// import List from "./infinite-list-vue.umd.cjs";
2022-09-15 09:01:22 +08:00
export default {
2022-10-20 23:55:57 +08:00
name: "App",
2022-09-15 09:01:22 +08:00
components: {
2023-03-29 14:38:13 +08:00
// CameraItem,
2022-11-28 16:44:51 +08:00
CameraList,
2022-10-20 23:55:57 +08:00
},
};
2022-09-15 09:01:22 +08:00
</script>
<style>
#app {
2022-10-20 23:55:57 +08:00
background-color: #f6f6f6;
2023-03-29 14:38:13 +08:00
//width: 100vw; //height: 100vh;
2022-10-20 23:55:57 +08:00
}
2022-09-15 09:01:22 +08:00
</style>