Skip to content

useDrauu

类别
导出体积
928 B
依赖包
@vueuse/integrations
上次更改
3 minutes ago

这是 drauu 的响应式实例。

Demo

Available in the @vueuse/integrations add-on.

安装

bash
npm i drauu@^0

使用

vue
<script setup>
import { toRefs } from '@vueuse/core'
import { useDrauu } from '@vueuse/integrations/useDrauu'
import { ref } from 'vue'

const target = ref()
const { undo, redo, canUndo, canRedo, brush } = useDrauu(target)
const { color, size } = toRefs(brush)
</script>

<template>
  <svg ref="target" />
</template>

类型声明

typescript
export type UseDrauuOptions = Omit<Options, "el">
export interface UseDrauuReturn {
  drauuInstance: Ref<Drauu | undefined>
  load: (svg: string) => void
  dump: () => string | undefined
  clear: () => void
  cancel: () => void
  undo: () => boolean | undefined
  redo: () => boolean | undefined
  canUndo: Ref<boolean>
  canRedo: Ref<boolean>
  brush: Ref<Brush>
  onChanged: EventHookOn
  onCommitted: EventHookOn
  onStart: EventHookOn
  onEnd: EventHookOn
  onCanceled: EventHookOn
}
/**
 * 响应式 drauu
 *
 * @see https://vueuse.org/useDrauu
 * @param target The target svg element
 * @param options Drauu Options
 */
export declare function useDrauu(
  target: MaybeComputedElementRef,
  options?: UseDrauuOptions,
): UseDrauuReturn

源码

源码演示文档

贡献者

Anthony Fu
wheat
一纸忘忧
qinwencheng
Anthony Fu
Doctorwu
ge Datou
Hayk Khachatryan
Curt Grimes

更新日志

v10.5.0 on 10/7/2023
87ea3 - fix: spread options for brush (#3463)
v10.1.1 on 5/1/2023
aaadd - fix: pass on node argument in committed event hook (#3047)