Skip to content

Instantly share code, notes, and snippets.

@Atinux
Created April 21, 2023 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Atinux/25590124ba7bb5cadebb8e691f81bf1f to your computer and use it in GitHub Desktop.
Save Atinux/25590124ba7bb5cadebb8e691f81bf1f to your computer and use it in GitHub Desktop.
Nuxt home - SFC
<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