Configure the signal factory. Called once by chamber.ts after its async Vue probe completes; also available to consumers who want a custom signal implementation.
chamber.ts
import { ref } from 'vue';import { configureSignal } from 'vapor-chamber';configureSignal(ref); Copy
import { ref } from 'vue';import { configureSignal } from 'vapor-chamber';configureSignal(ref);
Configure the signal factory. Called once by
chamber.tsafter its async Vue probe completes; also available to consumers who want a custom signal implementation.