2016-11-16 06:23:36 -05:00
|
|
|
/*= require vue */
|
2016-11-09 13:04:57 -05:00
|
|
|
/* global Vue */
|
|
|
|
|
|
|
|
(() => {
|
|
|
|
window.gl = window.gl || {};
|
|
|
|
window.gl.environmentsList = window.gl.environmentsList || {};
|
|
|
|
|
|
|
|
window.gl.environmentsList.ExternalUrlComponent = Vue.component('external-url-component', {
|
|
|
|
props: {
|
|
|
|
external_url: {
|
|
|
|
type: String,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
template: `
|
2016-11-15 07:07:11 -05:00
|
|
|
<a class="btn external_url" :href="external_url" target="_blank">
|
2016-11-09 13:04:57 -05:00
|
|
|
<i class="fa fa-external-link"></i>
|
|
|
|
</a>
|
|
|
|
`,
|
|
|
|
});
|
|
|
|
})();
|