mirror of
https://github.com/unraid/api.git
synced 2026-01-01 22:20:05 -06:00
23 lines
383 B
Vue
23 lines
383 B
Vue
<script setup lang="ts">
|
|
import 'tailwindcss/tailwind.css';
|
|
import '~/assets/main.css';
|
|
|
|
import { useCallbackStore } from '~/store/callbackActions';
|
|
|
|
const callbackStore = useCallbackStore();
|
|
|
|
onBeforeMount(() => {
|
|
callbackStore.watcher();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<slot />
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
</style>
|