mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	* chore: shared external link component, glimmerization * chore: update easy a tags * chore: update other a tags * chore: lil cleanup * changelog
		
			
				
	
	
		
			23 lines
		
	
	
		
			595 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			595 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import ExternalLink from './external-link';
 | 
						|
 | 
						|
/**
 | 
						|
 * @module LearnLink
 | 
						|
 * `LearnLink` components are used to render anchor links to relevant Vault learn documentation at learn.hashicorp.com.
 | 
						|
 *
 | 
						|
 * @example
 | 
						|
 * ```js
 | 
						|
    <LearnLink @path="/docs/secrets/kv/kv-v2.html">Learn about KV v2</LearnLink>
 | 
						|
 * ```
 | 
						|
 *
 | 
						|
 * @param path="/"{String} - The path to documentation on learn.hashicorp.com that the component should link to.
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
export default class LearnLinkComponent extends ExternalLink {
 | 
						|
  host = 'https://learn.hashicorp.com';
 | 
						|
 | 
						|
  get href() {
 | 
						|
    return `${this.host}${this.args.path}`;
 | 
						|
  }
 | 
						|
}
 |