fix: menu click bug
parent
a0cc30bf0e
commit
3694ad80c7
|
@ -231,6 +231,9 @@ export default {
|
|||
menuProps.on.click = this.handleClick
|
||||
menuProps.props.openTransitionName = menuOpenAnimation
|
||||
} else {
|
||||
menuProps.on.click = (e) => {
|
||||
this.$emit('click', e)
|
||||
}
|
||||
menuProps.props.openAnimation = menuOpenAnimation
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import Iframe from './components/iframe.vue'
|
|||
const AsyncTestComp = () => {
|
||||
const d = window.location.hash.replace('#', '')
|
||||
return {
|
||||
component: import(`../components/layout/demo/${d}`),
|
||||
component: import(`../components/menu/demo/${d}`),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue