Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

useInstance.ts 290B

vor 2 Jahren
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. }