mirror of
https://github.com/unraid/api.git
synced 2026-01-01 14:10:10 -06:00
13 lines
217 B
Vue
13 lines
217 B
Vue
<script lang="ts" setup>
|
|
const { registerEntry } = useCustomElements();
|
|
onBeforeMount(() => {
|
|
registerEntry('UnraidComponents');
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|