8 lines
92 B
JavaScript
8 lines
92 B
JavaScript
export default {
|
|
open: false,
|
|
|
|
toggle() {
|
|
this.open = ! this.open;
|
|
}
|
|
};
|