Skip to content

@statesync/vue


@statesync/vue / VueTargetKind

Type Alias: VueTargetKind

ts
type VueTargetKind = "ref" | "reactive";

Defined in: vue.ts:37

Discriminator for the Vue applier target.

  • 'reactive' -- targets a Vue reactive() proxy via in-place property mutation.
  • 'ref' -- targets a Vue ref() or shallowRef() container via .value replacement.

Released under the MIT License.