Files
myplayer-vue/src/views/home/default.vue
2026-04-17 00:23:18 +08:00

24 lines
740 B
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="home-default">
<h1>欢迎使用Myplayer</h1>
<h2>当前版本v0.4.0测试版</h2>
<!-- <p>v0.1.0 websocket实时聊天实装</p>
<p>v0.1.1 面板更新websocket重连机制增加</p>
<p>v0.1.2 修复bug群聊功能性实现webRTC点对点语言聊天实装</p>
<p>v0.2.0 修复若干bug完善了部分ui和逻辑</p>
<p>v0.3.0 重构了后端以及前端逻辑</p>
<p>预期开发计划1播放器相关开发 2ui重绘 3群聊功能完善......</p> -->
<p>总之还有好多事慢慢写吧</p>
</div>
</template>
<script setup>
</script>
<style scoped>
.home-default {
text-align: center;
padding: 20px;
}
</style>