mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
18 lines
331 B
JavaScript
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;
|
|
}
|
|
}
|
|
})
|