import { NTabPane, NTabs } from 'naive-ui'; import { defineComponent, nextTick, onMounted, ref, toRefs } from 'vue'; import styles from './index.module.less'; import SelectItem from './select-item'; import { useResizeObserver } from '@vueuse/core'; import { useCatchStore } from '/src/store/modules/catchData'; export default defineComponent({ name: 'select-resources', props: { type: { type: String, default: 'myResources' }, searchGroup: { type: Object, default: () => ({}) }, /** 从哪里使用 */ from: { type: String, default: '' }, instrumentId: { type: String, default: '' } }, emits: ['select'], setup(props) { const { type } = toRefs(props); const tabType = ref(type.value); const catchStore = useCatchStore(); onMounted(async () => { nextTick(() => { useResizeObserver( document.querySelector( '.select-resource .n-tabs-nav--top' ) as HTMLElement, (entries: any) => { const entry = entries[0]; const { height } = entry.contentRect; console.log(height, 'height - 11'); document.documentElement.style.setProperty( '--modal-lesson-tab-height', height + 'px' ); } ); }); // 获取教材分类列表 await catchStore.getMusicSheetCategory(true); }); return () => (