37 lines
604 B
JavaScript
37 lines
604 B
JavaScript
/**
|
|
* Renders a terminal button to open a web terminal.
|
|
* Used in environments table.
|
|
*/
|
|
import terminalIconSvg from 'icons/_icon_terminal.svg';
|
|
|
|
export default {
|
|
props: {
|
|
terminalPath: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
terminalIconSvg,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
title() {
|
|
return 'Terminal';
|
|
},
|
|
},
|
|
|
|
template: `
|
|
<a class="btn terminal-button has-tooltip"
|
|
data-container="body"
|
|
:title="title"
|
|
:aria-label="title"
|
|
:href="terminalPath">
|
|
${terminalIconSvg}
|
|
</a>
|
|
`,
|
|
};
|