fchat-rising/components/custom_dialog.ts

16 lines
297 B
TypeScript
Raw Normal View History

2017-09-02 01:50:31 +00:00
import Vue from 'vue';
import Modal from './Modal.vue';
export default class CustomDialog extends Vue {
2018-07-20 01:12:26 +00:00
protected get dialog(): Modal {
return <Modal>this.$children[0];
}
2017-09-02 01:50:31 +00:00
show(): void {
2018-07-20 01:12:26 +00:00
this.dialog.show();
2017-09-02 01:50:31 +00:00
}
hide(): void {
2018-07-20 01:12:26 +00:00
this.dialog.hide();
2017-09-02 01:50:31 +00:00
}
}