59 lines
1.0 KiB
Vue
59 lines
1.0 KiB
Vue
<script setup>
|
|
import { onMounted, onUpdated, ref } from 'vue';
|
|
import { SetupHandle, SetSize, SetPosition, ResetPosition } from '@/services/Windows';
|
|
|
|
import WindowHandle from '@/views/partials/WindowHandle.vue';
|
|
|
|
const handle = ref(null);
|
|
|
|
const props = defineProps(['data']);
|
|
const data = props.data;
|
|
|
|
let id = data.id;
|
|
onMounted(() => {
|
|
SetupHandle(id, handle);
|
|
SetSize(id, {width: 500, height: 380});
|
|
ResetPosition(id, "center");
|
|
});
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<div class="window-wrapper" :id="'window-wrapper-' + id">
|
|
<WindowHandle :window="id" ref="handle"></WindowHandle>
|
|
|
|
<!-- Body -->
|
|
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style scoped>
|
|
.window-wrapper {
|
|
min-width: 700px;
|
|
min-height: 630px;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.splash-image {
|
|
width: 600px;
|
|
height: 250px;
|
|
}
|
|
|
|
.form-field {
|
|
padding: 10px;
|
|
display: flex;
|
|
align-items: left;
|
|
flex-direction: column;
|
|
justify-content: left;
|
|
width: 600px;
|
|
}
|
|
|
|
label {
|
|
text-align: left;
|
|
}
|
|
|
|
</style>
|