UNPKG

@vuepress-denaro/core

Version:
9 lines (8 loc) 230 B
import { getCurrentInstance } from 'vue'; export function useInstance() { const vm = getCurrentInstance(); if (!vm) throw new Error('must be called in setup'); const instance = vm || {}; return instance; }