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