show.vue 432 B

12345678910111213141516171819202122232425
  1. <template>
  2. <LeftPano>
  3. <ui-group class="pano-group">
  4. <Sign
  5. v-for="view in views"
  6. :view="view"
  7. :key="view.id"
  8. :edit="false"
  9. />
  10. </ui-group>
  11. </LeftPano>
  12. </template>
  13. <script setup lang="ts">
  14. import Sign from './sign.vue'
  15. import { views } from '@/store'
  16. import { LeftPano } from '@/layout'
  17. </script>
  18. <style lang="scss" scoped>
  19. .pano-group {
  20. padding: 0 20px 40px;
  21. }
  22. </style>