23 lines
265 B
Vue
23 lines
265 B
Vue
<script lang="ts" setup>
|
|
|
|
|
|
useHead({
|
|
title: "Home",
|
|
meta: [
|
|
{
|
|
name: "description",
|
|
content: "Home",
|
|
},
|
|
],
|
|
titleTemplate: "Elon's Blog - %s",
|
|
});
|
|
|
|
</script>
|
|
<template>
|
|
<main>
|
|
|
|
<h1>This ia main section</h1>
|
|
</main>
|
|
</template>
|
|
|