mirror of https://gitee.com/godoos/godoos.git
14 lines
340 B
14 lines
340 B
<template>
|
|
<WindowNode v-for="node in winArray" :key="node?.id" :window="node" />
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { useSystem } from "@/system";
|
|
const rootState = useSystem()._rootState;
|
|
const winArray = rootState.windowOrder;
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.window-node {
|
|
position: relative;
|
|
z-index: 3;
|
|
}
|
|
</style>
|
|
|