mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
chore(TreeSelect): onSidebarChange
This commit is contained in:
parent
bada315fb3
commit
e253329a67
@ -97,14 +97,19 @@ export default createComponent({
|
||||
);
|
||||
};
|
||||
|
||||
const onSidebarChange = (index) => {
|
||||
emit('update:mainActiveIndex', index);
|
||||
emit('click-nav', index);
|
||||
};
|
||||
|
||||
const renderSidebar = () => {
|
||||
const Items = props.items.map((item) => (
|
||||
<SidebarItem
|
||||
dot={item.dot}
|
||||
title={item.text}
|
||||
badge={item.badge}
|
||||
disabled={item.disabled}
|
||||
class={[bem('nav-item'), item.className]}
|
||||
disabled={item.disabled}
|
||||
/>
|
||||
));
|
||||
|
||||
@ -112,10 +117,7 @@ export default createComponent({
|
||||
<Sidebar
|
||||
class={bem('nav')}
|
||||
modelValue={props.mainActiveIndex}
|
||||
onChange={(index) => {
|
||||
emit('update:mainActiveIndex', index);
|
||||
emit('click-nav', index);
|
||||
}}
|
||||
onChange={onSidebarChange}
|
||||
>
|
||||
{Items}
|
||||
</Sidebar>
|
||||
|
Loading…
x
Reference in New Issue
Block a user