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