index.vue 273 B

12345678910
  1. <!-- eslint-disable vue/multi-word-component-names -->
  2. <template>
  3. <CADViewer class="w-100% h-100%" show-operations :height="820" />
  4. </template>
  5. <script setup lang="ts">
  6. import { CADViewer } from '/@/components/CADViewer';
  7. </script>
  8. <style lang="less" scoped></style>