123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { NTabPane, NTabs } from 'naive-ui';
- import { defineComponent, ref, toRefs } from 'vue';
- import styles from './index.module.less';
- import SelectItem from './select-item';
- export default defineComponent({
- name: 'select-music',
- props: {
- type: {
- type: String,
- default: 'myResources'
- }
- },
- emits: ['select'],
- setup(props) {
- const { type } = toRefs(props);
- const tabType = ref(type.value);
- return () => (
- <div class={styles.selectMusic}>
- <NTabs
- animated
- value={tabType.value}
- paneClass={styles.paneTitle}
- justifyContent="center"
- paneWrapperClass={styles.paneWrapperContainer}
- onUpdate:value={(val: string) => {
- tabType.value = val;
- }}>
- <NTabPane
- name="myResources"
- tab="我的资源"
- displayDirective="show:lazy">
- <SelectItem type="myResources" />
- </NTabPane>
- <NTabPane
- name="shareResources"
- tab="共享资源"
- displayDirective="show:lazy">
- <SelectItem type="shareResources" />
- </NTabPane>
- <NTabPane
- name="myCollect"
- tab="我的收藏"
- displayDirective="show:lazy">
- <SelectItem type="myCollect" />
- </NTabPane>
- </NTabs>
- </div>
- );
- }
- });
|