mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-01-19 23:22:55 +08:00
fix: bugs
This commit is contained in:
parent
1f02f6c71f
commit
b059de17fb
|
@ -122,10 +122,10 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ContextMenu ref="playlistTabMenu">
|
<ContextMenu ref="playlistTabMenu">
|
||||||
<div class="item" @click="changePlaylistFilter('all')"> 全部歌单 </div>
|
<div class="item" @click="changePlaylistFilter('all')">全部歌单</div>
|
||||||
<hr />
|
<hr />
|
||||||
<div class="item" @click="changePlaylistFilter('mine')"> 创建的歌单 </div>
|
<div class="item" @click="changePlaylistFilter('mine')">创建的歌单</div>
|
||||||
<div class="item" @click="changePlaylistFilter('liked')">收藏的歌单 </div>
|
<div class="item" @click="changePlaylistFilter('liked')">收藏的歌单</div>
|
||||||
</ContextMenu>
|
</ContextMenu>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -485,7 +485,6 @@ export default {
|
||||||
},
|
},
|
||||||
outputDevice: {
|
outputDevice: {
|
||||||
get() {
|
get() {
|
||||||
if (this.withoutAudioPrivilege === true) this.getAllOutputDevices();
|
|
||||||
const isValidDevice = this.allOutputDevices.find(
|
const isValidDevice = this.allOutputDevices.find(
|
||||||
device => device.deviceId === this.settings.outputDevice
|
device => device.deviceId === this.settings.outputDevice
|
||||||
);
|
);
|
||||||
|
@ -679,9 +678,11 @@ export default {
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.countDBSize('tracks');
|
this.countDBSize('tracks');
|
||||||
|
if (process.env.IS_ELECTRON) this.getAllOutputDevices();
|
||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
this.countDBSize('tracks');
|
this.countDBSize('tracks');
|
||||||
|
if (process.env.IS_ELECTRON) this.getAllOutputDevices();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
...mapActions(['showToast']),
|
...mapActions(['showToast']),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user