mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
14 lines
254 B
TypeScript
14 lines
254 B
TypeScript
import { inject } from 'vue';
|
|
|
|
import type { Services } from '@editor/type';
|
|
|
|
export const useServices = () => {
|
|
const services = inject<Services>('services');
|
|
|
|
if (!services) {
|
|
throw new Error('services is required');
|
|
}
|
|
|
|
return services;
|
|
};
|