PHP Classes

File: resources/js/Components/UI/SlideOver.vue

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   S3 B2B PHP Amazon S3 File Manager   resources/js/Components/UI/SlideOver.vue   Download  
File: resources/js/Components/UI/SlideOver.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: S3 B2B PHP Amazon S3 File Manager
Manage files stored in multiple Amazon S3 buckets
Author: By
Last change:
Date: 9 months ago
Size: 1,213 bytes
 

Contents

Class file image Download
<script setup> import {Dialog, DialogPanel, TransitionChild, TransitionRoot} from "@headlessui/vue"; const emits = defineEmits(['close']) </script> <template> <TransitionRoot as="template" @close="emits('close')" > <Dialog as="div" class="relative z-10" > <div class="fixed inset-0" /> <div class="fixed inset-0 overflow-hidden"> <div class="absolute inset-0 overflow-hidden"> <div class="pointer-events-none fixed inset-y-0 right-0 flex max-w-full pl-10 sm:pl-16"> <TransitionChild as="template" enter="transform transition ease-in-out duration-500 sm:duration-700" enter-from="translate-x-full" enter-to="translate-x-0" leave="transform transition ease-in-out duration-500 sm:duration-700" leave-from="translate-x-0" leave-to="translate-x-full" > <DialogPanel class="pointer-events-auto w-screen max-w-md"> <slot /> </DialogPanel> </TransitionChild> </div> </div> </div> </Dialog> </TransitionRoot> </template> <style scoped> </style>