Files
monitor/src/App.vue

24 lines
361 B
Vue
Raw Normal View History

2022-09-15 09:01:22 +08:00
<template>
2022-11-28 16:44:51 +08:00
<!-- <List>123132</List> -->
<CameraList />
2022-09-15 09:01:22 +08:00
</template>
<script>
2022-11-28 16:44:51 +08:00
import CameraList from "./components/CameraList.vue";
// 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: {
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-27 11:10:09 +08:00
//width: 100vw;
//height: 100vh;
2022-10-20 23:55:57 +08:00
}
2022-09-15 09:01:22 +08:00
</style>