Skip to content
Snippets Groups Projects
App.vue 565 B
Newer Older
<script setup lang="ts">
</script>

<template>
  <div class="fixed top-0 left-0 z-50">
    <Button
      @click.prevent="visible = !visible"
      label="Menu"
      iconPos="top"
      icon="pi pi-bars"
      severity="secondary"
    />
  </div>
  <Drawer v-model:visible="visible">
    <template #container="{ closeCallback }">
      <BaseSidebarMenu @closeCallback="closeCallback" class="relative z-50" />
</template>

<style scoped></style>