forked from noxious/client
27 lines
859 B
Vue
27 lines
859 B
Vue
<template>
|
|
<Modal :isModalOpen="true" :closable="false" :modal-width="200" :modal-height="260">
|
|
<template #modalHeader>
|
|
<h3 class="modal-title">GM tools</h3>
|
|
</template>
|
|
<template #modalBody>
|
|
<div class="content">
|
|
<button class="btn-cyan w-full" type="button">Zone manager</button>
|
|
<button class="btn-cyan w-full" type="button">Player manager</button>
|
|
<button class="btn-cyan w-full" type="button">Item manager</button>
|
|
<button class="btn-cyan w-full" type="button">NPC manager</button>
|
|
</div>
|
|
</template>
|
|
</Modal>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import ZoneEditor from '@/components/utilities/zoneEditor/ZoneEditor.vue'
|
|
import Modal from '@/components/utilities/Modal.vue'
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
</style> |