page-meta-head.vue 135 B

12345678910
  1. <template>
  2. <teleport to="head">
  3. <slot />
  4. </teleport>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'PageMetaHead',
  9. }
  10. </script>