Skip to content

Instantly share code, notes, and snippets.

@karuhi
Created July 26, 2019 15:08
Show Gist options
  • Save karuhi/c52d67203c99423542835b06bb603001 to your computer and use it in GitHub Desktop.
Save karuhi/c52d67203c99423542835b06bb603001 to your computer and use it in GitHub Desktop.
<script>
export default {
data: function() {
return {
disp_menu: [true, false, false]
}
},
methods: {
changeMenu(num) {
const index = num;
for (var i = 0; i < this.disp_menu.length; i++) {
this.disp_menu.splice(i, 1, false);
}
this.disp_menu.splice(index, 1, true);
console.log(this.disp_menu);
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment