All files / src/app AppShell.vue

0% Statements 0/1
0% Branches 0/2
100% Functions 0/0
0% Lines 0/1

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 14 15 16 17 18 19 20                                       
<script setup lang="ts">
import { RouterView } from "vue-router";
 
import AppFooter from "./AppFooter.vue";
import AppHeader from "./AppHeader.vue";
</script>
 
<template>
  <a class="pj-skip-link" href="#main-content">跳到主要内容</a>
  <div class="pj-app-shell storefront-shell">
    <AppHeader />
    <main id="main-content" class="pj-app-main" tabindex="-1">
      <RouterView />
    </main>
    <AppFooter />
  </div>
</template>
 
<style src="./app-shell.css"></style>