mirror of
https://github.com/unraid/api.git
synced 2026-05-25 11:39:52 -05:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import { onBeforeMount } from 'vue';
|
|
import { nuxtApp } from './index.vue';
|
|
|
|
onBeforeMount(() => {
|
|
// @ts-ignore
|
|
nuxtApp.$customElements.registerEntry('UnraidComponents');
|
|
|
|
// serverData.value = await getServerState();
|
|
});
|