monolito_djanco_poonto/node_modules/vuetify/lib/composables/scopeId.mjs
2025-02-25 13:26:08 -03:00

12 lines
300 B
JavaScript

// Utilities
import { getCurrentInstance } from "../util/index.mjs";
export function useScopeId() {
const vm = getCurrentInstance('useScopeId');
const scopeId = vm.vnode.scopeId;
return {
scopeId: scopeId ? {
[scopeId]: ''
} : undefined
};
}
//# sourceMappingURL=scopeId.mjs.map