2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/homepage/theme/static/scripts/menu.js

12 lines
186 B
JavaScript
Raw Normal View History

2021-05-13 09:58:06 +02:00
new window.Vue({ // eslint-disable-line no-new
el: '#navigation',
data: {
active: false
},
methods: {
toggle: function () {
this.active = !this.active
}
}
})