File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11<script setup lang="ts">
22import { useNuxtifyConfig , useServerSeoMeta } from ' #imports'
33
4- // Page info
5- useServerSeoMeta ({
6- title: ' @nuxtify/core playground' ,
7- description: ' This is the @nuxtify/core playground.' ,
8- })
9-
104// App state
115const nuxtifyConfig = useNuxtifyConfig ()
126const dialog = useDialog ()
137const toast = useToast ()
148
9+ // Page info
10+ useServerSeoMeta ({
11+ title: ` ${nuxtifyConfig .brand ?.name } playground ` ,
12+ description: ' This is the ${nuxtifyConfig.brand?.name} playground.' ,
13+ })
14+
1515// Functions
1616const clickDialog = () => {
1717 // Dialog
@@ -43,7 +43,7 @@ const clickToast = () => {
4343 <v-container >
4444 <v-row >
4545 <v-col cols =" 12" >
46- <h1 >{{ nuxtifyConfig.brand?.name }}</h1 >
46+ <h1 >{{ nuxtifyConfig.brand?.name }} playground </h1 >
4747 </v-col >
4848 </v-row >
4949
Original file line number Diff line number Diff line change 11<template >
2- <div >playground logo override</div >
2+ <div >This is the AppLogo override component </div >
33</template >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default defineNuxtConfig({
44 compatibilityDate : '2025-05-13' ,
55 nuxtifyCore : {
66 brand : {
7- name : '@nuxtify/core playground ' ,
7+ tagline : 'Catchy tagline ' ,
88 } ,
99 announcement : {
1010 show : true ,
You can’t perform that action at this time.
0 commit comments