UNPKG

@lwce/router

Version:
21 lines (18 loc) 384 B
import {LightningElement, api} from 'lwc'; export default class Link extends LightningElement { @api title; @api href; @api role; @api ariaPressed; @api className; navigate(e) { e.preventDefault(); this.dispatchEvent( new CustomEvent('lwcerouter_navigate', { detail: this.href, bubbles: true, composed: true, }), ); } }