All files / src/views NotFoundView.vue

0% Statements 0/3
0% Branches 0/8
0% Functions 0/1
0% Lines 0/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13                         
<script setup lang="ts">
import { RouterLink } from "vue-router";
</script>
 
<template>
  <section class="not-found">
    <p class="eyebrow">404</p>
    <h1>这里没有可继续的内容。</h1>
    <p>链接可能已经变化,商品事实不会由这个页面猜测。</p>
    <RouterLink class="primary-action" to="/">返回素简记 →</RouterLink>
  </section>
</template>