iptv-app/ui/src/App.vue
2026-02-24 23:00:33 +08:00

50 lines
1.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>