mirror of
https://github.com/offen/website.git
synced 2024-12-26 22:50:20 +01:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
new window.Vue({ // eslint-disable-line no-new
|
|
el: '#navigation',
|
|
data: {
|
|
active: false
|
|
},
|
|
methods: {
|
|
toggle: function () {
|
|
this.active = !this.active
|
|
}
|
|
}
|
|
})
|