Trying to implement the Autocomplete component within a render function but encountering issues with the scopedSlots feature. Here is my code snippet:
import { VAutocomplete } from 'vuetify/lib'
export default {
render (h) {
return h(VAutocomplete, {
scopedSlots: {
label: () => h('h1', 'lol'),
'append-item': () => h('p', 'Last item')
},
})
},
}
An attempt was made to follow the solution provided in this post Vuetify VMenu with render function
The solution works for VMenu, but when applied to Autocomplete, it doesn't seem to be functioning as expected in the specified slots. What could I be missing?