Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 312 Bytes

link-element-no-literal-href.md

File metadata and controls

20 lines (16 loc) · 312 Bytes

warning about finding literal value for href on LinkElement

Fail

<template>
  <LinkElement href="foo" />
  <LinkElement href="https://example.com" />
</template>

Pass

<template>
  <LinkElement :href="foo" />
  <!-- `/` is an exception -->
  <LinkElement href="/" />
</template>