Created
April 21, 2023 10:42
-
-
Save atinux/25590124ba7bb5cadebb8e691f81bf1f to your computer and use it in GitHub Desktop.
Nuxt home - SFC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
useSeoMeta({ | |
title: 'Meet Nuxt', | |
description: 'The Vue Framework for Web Architects.' | |
}) | |
</script> | |
<template> | |
<div id="app"> | |
<AppHeader /> | |
<NuxtPage /> | |
<AppFooter /> | |
</div> | |
</template> | |
<style> | |
#app { | |
background-color: navy; | |
color: lightgreen; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment