Im doing something like this
In my scoped slot component
<slot :search="search" :searchKey="searchKey" name="search"></slot>
In the parent
<template slot="search" scope="props">
<md-button @click="props.search = 'Search Value'"> Owned Items </md-button>
</template>
You can simply pass in a method prop instead.
Most helpful comment
You can simply pass in a method prop instead.