Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

useInstance.ts 290B

2 år sedan
123456789101112
  1. import { ComponentInternalInstance, getCurrentInstance } from 'vue'
  2. export default function useInstance() {
  3. const { appContext, proxy } = getCurrentInstance() as ComponentInternalInstance;
  4. const global = appContext.config.globalProperties;
  5. return {
  6. proxy,
  7. global,
  8. appContext
  9. }
  10. }