123456789101112 |
- import { useCatalogue } from '@tresjs/core'
- import { getCurrentInstance } from 'vue'
- export function useCientos() {
- const appContext = getCurrentInstance()?.appContext
- const { catalogue, extend } = useCatalogue(appContext?.app)
- return {
- catalogue,
- extend,
- }
- }
|