feat: 实现功能&优化

- 底部播放栏
- MediaSession
- 插件系统&存储位置
- URL缓存机制
- 整理项目结构
This commit is contained in:
lqtmcstudio
2026-02-03 12:59:04 +08:00
parent 6965858ae3
commit 935038cd93
21 changed files with 2935 additions and 15 deletions

11
src/renderer/App.vue Normal file
View File

@@ -0,0 +1,11 @@
<template>
<MainLayout />
</template>
<script setup lang="ts">
import MainLayout from './layout/MainLayout.vue';
</script>
<style>
@import "./styles/main.css";
</style>