UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

11 lines (10 loc) 209 B
import { watch } from "vue"; /** * @since 0.2.0 * @category Controller */ export function usePipe(source, target) { return watch(source, function onChange(next) { target.value = next; }); }