1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00
apt/assets/js/modules/alpine_collapse.js

18 lines
331 B
JavaScript

// Alpine collapse component
export default () => ({
show: false,
trigger: {
['@click']() {
this.show = ! this.show;
},
['x-text']() {
return this.show ? 'Hide' : 'Show';
}
},
target: {
['x-show']() {
return this.show;
}
}
})