import { NTabPane, NTabs } from 'naive-ui'; import { defineComponent } from 'vue'; import styles from './index.module.less'; import SelectItem from './select-item'; export default defineComponent({ name: 'select-music', emits: ['select'], setup(props, { emit }) { return () => (
); } });