mirror of
https://github.com/natankeddem/bale.git
synced 2026-04-23 06:50:41 +00:00
22 lines
390 B
JavaScript
22 lines
390 B
JavaScript
export default {
|
|
template: "<div></div>",
|
|
mounted() {
|
|
this.terminal = new Terminal(this.options);
|
|
this.terminal.open(this.$el);
|
|
},
|
|
beforeDestroy() {
|
|
this.terminal.dispose();
|
|
},
|
|
beforeUnmount() {
|
|
this.terminal.dispose();
|
|
},
|
|
methods: {
|
|
call_api_method(name, ...args) {
|
|
this.terminal[name](...args);
|
|
},
|
|
},
|
|
props: {
|
|
options: Object,
|
|
}
|
|
};
|