Looking to create a dropdown menu that will only display when the screen size is less than 767px. There are two conditions to hide the menu:
1. If someone clicks outside of the menu.
2. When a random router link is clicked.
export default {
name: 'navbar',
data() {
return {
isShow: false
}
},
methods: {
onClick(e) {
this.isShow = false
}
}
}