mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-07 02:46:55 +08:00
fix wrong langue value when adding songs
This commit is contained in:
@@ -1,22 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
import { useAccount } from '@/api/account'
|
||||
import DanmakuClient from '@/data/DanmakuClient'
|
||||
import { useDanmakuClient } from '@/store/useDanmakuClient'
|
||||
import { NAlert } from 'naive-ui'
|
||||
import { onMounted, onUnmounted } from 'vue'
|
||||
import OpenLottery from '../open_live/OpenLottery.vue'
|
||||
|
||||
const accountInfo = useAccount()
|
||||
const client = new DanmakuClient(null)
|
||||
const client = await useDanmakuClient().initClient()
|
||||
|
||||
onMounted(() => {
|
||||
client.Start()
|
||||
})
|
||||
onUnmounted(() => {
|
||||
client.Stop()
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<NAlert v-if="accountInfo?.isBiliVerified != true" type="info"> 尚未进行Bilibili认证 </NAlert>
|
||||
<OpenLottery v-else :client="client" :room-info="client.roomAuthInfo.value" :code="accountInfo?.biliAuthCode" />
|
||||
<OpenLottery v-else :room-info="client.authInfo!" :code="accountInfo?.biliAuthCode" />
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user