Heim > Fragen und Antworten > Hauptteil
P粉1558329412023-09-02 12:37:55
如果你真的需要用插槽来做到这一点,那么你就必须这样做 使用 Vue 渲染函数和 JSX
<script setup> import { useSlots, onMounted, onUpdated, ref, h} from 'vue'; const slots = useSlots() const index = ref(0) const current = ref(null) onMounted(() => { const defaultSlotElements = slots.default() current.value = defaultSlotElements[0] }), onUpdated(() =>{ console.log(defaultSlotElements[index]) } ) const render = () => { return h('div', { class: 'carousel'}, [ h('p', `My default slot has ${slots.default().length} elements.`), h('div', slots.default()[index.value]), h('p', `Picture ${ index.value + 1 }`), h('button', { onClick: () => { index.value = index.value + 1 == slots.default().length ? 0 : index.value + 1 } }, 'Next') ]); }; </script> <template> <render /> </template>
这是工作证监会游乐场
更新
渲染函数可以与自定义组件一起使用。
这里尝试构建您的
我没有看到任何其他方法可以使用默认插槽
而不是使用render
函数来构建您想要的内容。