| | |
| | | * @Author: shuishen 1109946754@qq.com |
| | | * @Date: 2024-10-29 14:20:49 |
| | | * @LastEditors: shuishen 1109946754@qq.com |
| | | * @LastEditTime: 2024-10-29 17:21:51 |
| | | * @LastEditTime: 2024-11-07 16:23:56 |
| | | * @FilePath: \bigScreen\src\views\layout\components\scomponents\toolList.vue |
| | | * @Description: |
| | | * |
| | |
| | | --> |
| | | <template> |
| | | <ul v-show="moreToolShow" class="tool-list-box"> |
| | | <li @click="showComponent(item.component)" v-for="item, index in components" :key="index"> |
| | | <li @click="showComponent(item.component)" v-for="(item, index) in components" :key="index"> |
| | | <i :class="item.icon"></i> {{ item.title }} |
| | | </li> |
| | | </ul> |
| | |
| | | }) |
| | | import location from './tool/location.vue' |
| | | import exportScene from './tool/exportScene.vue' |
| | | import { getViewer } from 'utils/getViewer' |
| | | import component from 'element-plus/es/components/tree-select/src/tree-select-option.mjs' |
| | | const emit = defineEmits(['close']) |
| | | const globalViewer = getViewer() |
| | | |
| | | let currentComponent = shallowRef(null) |
| | | const components = [ |