import { defineComponent, computed } from "vue" import styles from "./index.module.less" import { NoticeBar } from "vant" import state from "/src/state" import { smoothAnimationState } from "../../view-detail/smoothAnimation" export default defineComponent({ name: "authorName", setup() { const combineAuthor = computed(() => { const context = state.musicLyricist ? state.musicComposer + ' / ' + state.musicLyricist : state.musicComposer; return context }); return () => ( <> { !smoothAnimationState.isShow.value && !state.isCombineRender &&
} > ) } })