11 lines
182 B
Vue
11 lines
182 B
Vue
<template>
|
|
<slot />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({
|
|
title: "Food Not Bombs",
|
|
link: [{ rel: "icon", type: "image/png", href: "/logo.png" }],
|
|
});
|
|
</script>
|