currentInstance.ts 289 B

123456789101112
  1. import { Component } from 'typescript/component'
  2. // TODO set this
  3. export let currentInstance: Component | null = null
  4. export function getCurrentInstance(): Component | null {
  5. return currentInstance
  6. }
  7. export function setCurrentInstance(vm: Component | null) {
  8. currentInstance = vm
  9. }