fix: bug修复
This commit is contained in:
parent
7999499702
commit
13830d748b
@ -1,5 +1,5 @@
|
||||
<script lang="ts" setup>
|
||||
import { ref, reactive } from 'vue'
|
||||
import { ref, reactive, computed } from 'vue'
|
||||
import { PlayOne, PauseOne } from '@icon-park/vue-next'
|
||||
import { ITalkRecordExtraAudio, ITalkRecord } from '@/types/chat'
|
||||
import { onClickOutside } from '@vueuse/core'
|
||||
@ -84,7 +84,7 @@ const formatTime = (value: number = 0) => {
|
||||
|
||||
return `${Math.floor(value)}"`
|
||||
}
|
||||
const right = props.data.float === 'right'
|
||||
const right = computed(() => props.data.float === 'right')
|
||||
</script>
|
||||
<template>
|
||||
<div
|
||||
|
Loading…
Reference in New Issue
Block a user