Skip to content

useRound

Category
Export Size
115 B
Package
@vueuse/math
Last Changed
15 minutes ago

响应式 Math.round.

用法

ts
import { useRound } from '@vueuse/math'

const value = ref(20.49)
const result = useRound(value) // 20

类型声明

typescript
/**
 * 响应式 `Math.round`
 *
 * @see https://vueuse.org/useRound
 */
export declare function useRound(
  value: MaybeRefOrGetter<number>,
): ComputedRef<number>

Source

SourceDocs

贡献者

Anthony Fu
丶远方
Anthony Fu
webfansplz

变更日志

v10.0.0-beta.4 on 4/13/2023
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat(toValue): rename resolveUnref to toValue

Released under the MIT License.