import OHeader from '@/components/o-header' import OSticky from '@/components/o-sticky' import { Sticky, Tab, Tabs } from 'vant' import { defineComponent, ref } from 'vue' import Information from './compontent/information' import Phone from './compontent/phone' import Plan from './compontent/plan' import styles from './orchestra-detail.module.less' export default defineComponent({ name: 'orchestra-detail', setup() { const tabValue = ref('information') return () => (
{/* */} {tabValue.value === 'information' && } {tabValue.value === 'plan' && } {tabValue.value === 'phone' && }
) } })