dragonroll/client/src/views/windows/game/CombatWindow.vue
2024-09-09 19:57:20 +02:00

43 lines
953 B
Vue

<script setup>
import WindowHandle from '@/views/partials/WindowHandle.vue';
import { onMounted, onUpdated, ref, watch } from 'vue';
import { SetupHandle, SetSize, SetPosition, ResetPosition } from '@/services/Windows';
import { SetMaxSize, SetMinSize, SetResizable } from '../../../services/Windows';
const props = defineProps(['data']);
const data = props.data;
const handle = ref(null);
let id = data.id;
onMounted(() => {
SetupHandle(id, handle);
SetSize(id, {width: 200, height: 300});
SetResizable(id, true);
SetMinSize(id, {width: 200, height: 200});
SetMaxSize(id, {width: 200});
ResetPosition(id, {x: 30, y: 300});
});
</script>
<template>
<div class="window-wrapper" :id="'window-wrapper-' + id">
<WindowHandle :window="id" ref="handle"></WindowHandle>
</div>
</template>
<style scoped>
.window-wrapper {
display: flex;
align-items: center;
user-select: none;
}
</style>