50 lines
1.2 KiB
Vue
50 lines
1.2 KiB
Vue
<template>
|
||
<div class="iptv-app">
|
||
<!-- 全屏视频播放器 -->
|
||
<!-- <VideoPlayer /> -->
|
||
|
||
<!-- 左侧面板(四栏) -->
|
||
<!-- <LeftPanel /> -->
|
||
|
||
<!-- 遥控数字输入显示 -->
|
||
<!-- <InputPanel /> -->
|
||
|
||
<!-- 底部信息栏 -->
|
||
<!-- <BottomPanel /> -->
|
||
|
||
<!-- 线路选择弹窗 -->
|
||
<!-- <SourceModal v-if="showSourceSelector" /> -->
|
||
|
||
<!-- 设置弹窗 -->
|
||
<!-- <SettingsModal v-if="showSettings" /> -->
|
||
|
||
<!-- 调试面板 -->
|
||
<!-- <DebugPanel /> -->
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
// import VideoPlayer from "./components/VideoPlayer.vue";
|
||
// import LeftPanel from "./components/Layout/LeftPanel.vue";
|
||
// import InputPanel from "./components/Layout/InputPanel.vue";
|
||
// import BottomPanel from "./components/Layout/BottomPanel.vue";
|
||
// import SourceModal from "./components/Modals/SourceModal.vue";
|
||
// import SettingsModal from "./components/Modals/SettingsModal.vue";
|
||
// import DebugPanel from "./components/Layout/DebugPanel.vue";
|
||
import { useStorage } from "./composables/useStorage";
|
||
|
||
const storage = useStorage();
|
||
</script>
|
||
|
||
<style scoped>
|
||
.iptv-app {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background: #000;
|
||
overflow: hidden;
|
||
}
|
||
</style>
|