I'm using this with Vue2, so not sure if it's related to that.... It seems which ever items has children: [], any item below that never gets rendered, but is still searchable.
data() {
return {
hotkeys: [
{id: 'Home', title: 'Home'},
{id: 'Publish', title: 'Publish'},
{id: 'Settings', title: 'Settings'},
{id: 'Theme', title: 'Theme', children: [{id: 'Light', title: 'Light Theme'}]}
]
}
}

data() {
return {
hotkeys: [
{id: 'Home', title: 'Home', children: [{id: 'Notifications', title: 'Notifications'}]},
{id: 'Publish', title: 'Publish'},
{id: 'Settings', title: 'Settings'},
{id: 'Theme', title: 'Theme'}
]
}
}


This may just be a configuration setup issue, but I'm not sure what I'm missing.
Using version 1.2.1
I'm using this with Vue2, so not sure if it's related to that.... It seems which ever items has
children: [], any item below that never gets rendered, but is still searchable.This may just be a configuration setup issue, but I'm not sure what I'm missing.
Using version
1.2.1