11 lines
135 B
Vue
11 lines
135 B
Vue
|
<template>
|
||
|
<teleport to="head">
|
||
|
<slot />
|
||
|
</teleport>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'PageMetaHead',
|
||
|
}
|
||
|
</script>
|