how to hide dropdown menu if we click outside the menu in vuejs

前端 未结 3 2022
小鲜肉
小鲜肉 2021-01-12 01:08

I am using a dropdown menu components in vuejs to make normal dropdown menu. My code is for dropdown component is :



        
3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-12 01:15

    I know it's quite an old question but I think the best way to do that without any external plugins is to add a click listener to mounted lifecycle hook (and remove it on beforeDestroy hook) and filter the clicks on your component so it only hides when clicked outside.

    
    
    
    

提交回复
热议问题