30 lines
1.1 KiB
Vue
30 lines
1.1 KiB
Vue
<template>
|
|
<Modal :isModalOpen="gmPanelStore.isOpen" @modal:close="() => gmPanelStore.toggle()" :modal-width="1000" :modal-height="650">
|
|
<template #modalHeader>
|
|
<h3 class="m-0 font-medium shrink-0">GM Panel</h3>
|
|
<div class="flex gap-1.5 flex-wrap">
|
|
<button @mousedown.stop class="btn-cyan py-1.5 px-4 min-w-24">General</button>
|
|
<button @mousedown.stop class="btn-cyan py-1.5 px-4 min-w-24">Users</button>
|
|
<button @mousedown.stop class="btn-cyan py-1.5 px-4 min-w-24">Chats</button>
|
|
<button @mousedown.stop class="btn-cyan active py-1.5 px-4 min-w-24">Asset manager</button>
|
|
</div>
|
|
</template>
|
|
<template #modalBody>
|
|
<div class="h-full margin-0">
|
|
<AssetManager v-if="toggle == 'asset-manager'" />
|
|
</div>
|
|
</template>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import Modal from '@/components/utilities/Modal.vue'
|
|
import AssetManager from '@/components/utilities/assetManager/AssetManager.vue'
|
|
import { useGmPanelStore } from '@/stores/gmPanel'
|
|
|
|
const gmPanelStore = useGmPanelStore()
|
|
|
|
let toggle = ref('asset-manager')
|
|
</script>
|