<div></div>
<script>
export default {
oncreate() {
this.events = ['create'];
},
ondestroy() {
this.events.push('destroy');
}
};
</script>