vdomInteropState.ts 245 B

1234567
  1. // if vdom interop plugin is not installed, isInteropEnabled will be false
  2. // the interop code path will be tree-shaken out by bundlers
  3. export let isInteropEnabled = false
  4. export function setInteropEnabled(): void {
  5. isInteropEnabled = true
  6. }