nuxt3: how pass data through slot

50 Views Asked by At

i have component sidebar with filterOptions. i want pass value of filterOptionsto pages/collections/index.

component sidebar

const filterOptions = ref{ //some filters}
const handleSetFilter = () => {//login set filter}
const handleClearFilter = () => {// filterOptions.value = {}}

in layouts/collectionLayout.vue

<template>
    <div>
        <Header/>
            <slot>
               <SideBar/>
            </slot>
        <Footer/>
    </div>
</template>
<script setup>
</script>

in collections/index.vue

<template>
    <div>
     
    </div>
</template>
<script setup>
 /// i want handle product filter with filterOptions from SideBar component
</script>
0

There are 0 best solutions below