9 lines
129 B
JavaScript

module.exports = {
onCreate() {
this.state = { mounted: false };
},
onMount() {
this.state.mounted = true;
},
};