mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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 renderSidebar = () => {
|
||||||
const Items = props.items.map((item) => (
|
const Items = props.items.map((item) => (
|
||||||
<SidebarItem
|
<SidebarItem
|
||||||
dot={item.dot}
|
dot={item.dot}
|
||||||
title={item.text}
|
title={item.text}
|
||||||
badge={item.badge}
|
badge={item.badge}
|
||||||
disabled={item.disabled}
|
|
||||||
class={[bem('nav-item'), item.className]}
|
class={[bem('nav-item'), item.className]}
|
||||||
|
disabled={item.disabled}
|
||||||
/>
|
/>
|
||||||
));
|
));
|
||||||
|
|
||||||
@ -112,10 +117,7 @@ export default createComponent({
|
|||||||
<Sidebar
|
<Sidebar
|
||||||
class={bem('nav')}
|
class={bem('nav')}
|
||||||
modelValue={props.mainActiveIndex}
|
modelValue={props.mainActiveIndex}
|
||||||
onChange={(index) => {
|
onChange={onSidebarChange}
|
||||||
emit('update:mainActiveIndex', index);
|
|
||||||
emit('click-nav', index);
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
{Items}
|
{Items}
|
||||||
</Sidebar>
|
</Sidebar>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user