open-vault/ui/app/components/doc-link.js

21 lines
483 B
JavaScript
Raw Normal View History

import Component from '@ember/component';
import { computed } from '@ember/object';
2018-04-03 14:16:57 +00:00
import hbs from 'htmlbars-inline-precompile';
export default Component.extend({
tagName: 'a',
2018-08-28 05:03:55 +00:00
classNames: ['doc-link'],
2018-04-03 14:16:57 +00:00
attributeBindings: ['target', 'rel', 'href'],
layout: hbs`{{yield}}`,
target: '_blank',
rel: 'noreferrer noopener',
2018-11-14 20:56:03 +00:00
host: 'https://www.vaultproject.io',
2018-04-03 14:16:57 +00:00
path: '/',
2018-11-14 20:56:03 +00:00
href: computed('host', 'path', function() {
return `${this.host}${this.path}`;
2018-04-03 14:16:57 +00:00
}),
});