Files
api/web/components/CallbackHandler.ce.vue
2023-08-08 13:50:42 -07:00

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>