1234567891011121314151617181920212223 |
- <template>
- <LeftPano>
- <ui-group class="pano-group">
- <Sign v-for="view in views" :view="view" :key="view.id" :edit="false" />
- </ui-group>
- </LeftPano>
- </template>
- <script setup lang="ts">
- import Sign from "./sign.vue";
- import { views } from "@/store";
- import { LeftPano } from "@/layout";
- import { useViewStack } from "@/hook";
- import { showRightPanoStack } from "@/env";
- import { ref } from "vue";
- useViewStack(() => showRightPanoStack.push(ref(false)));
- </script>
- <style lang="scss" scoped>
- .pano-group {
- padding: 0 20px 40px;
- }
- </style>
|