This commit is contained in:
底层用户 2022-11-17 16:40:38 +08:00
parent 9bf33c5610
commit 0e32dd4113
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "home", "name": "home",
"private": true, "private": true,
"version": "0.0.0", "version": "4.0.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -92,7 +92,7 @@
fill="#ffffff60" fill="#ffffff60"
@click="musicListShow = false" @click="musicListShow = false"
/> />
<APlayerDom <Player
:songServer="playerData.server" :songServer="playerData.server"
:songType="playerData.type" :songType="playerData.type"
:songId="playerData.id" :songId="playerData.id"
@ -117,7 +117,7 @@ import {
VolumeSmall, VolumeSmall,
VolumeNotice, VolumeNotice,
} from "@icon-park/vue-next"; } from "@icon-park/vue-next";
import APlayerDom from "@/components/APlayerDom/index.vue"; import Player from "@/components/Player/beta.vue";
import { mainStore } from "@/store"; import { mainStore } from "@/store";
const store = mainStore(); const store = mainStore();

View File

@ -34,7 +34,7 @@
<script setup> <script setup>
import { ref, onMounted, onBeforeUnmount } from "vue"; import { ref, onMounted, onBeforeUnmount } from "vue";
import Music from "@/components/Music/index.vue"; import Music from "@/components/Music/test.vue";
import Hitokoto from "@/components/Hitokoto/index.vue"; import Hitokoto from "@/components/Hitokoto/index.vue";
import Weather from "@/components/Weather/index.vue"; import Weather from "@/components/Weather/index.vue";
import { getCurrentTime } from "@/utils/getTime"; import { getCurrentTime } from "@/utils/getTime";