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 1
1
<script setup lang="ts">
2
2
import { useNuxtifyConfig , useServerSeoMeta } from ' #imports'
3
3
4
- // Page info
5
- useServerSeoMeta ({
6
- title: ' @nuxtify/core playground' ,
7
- description: ' This is the @nuxtify/core playground.' ,
8
- })
9
-
10
4
// App state
11
5
const nuxtifyConfig = useNuxtifyConfig ()
12
6
const dialog = useDialog ()
13
7
const toast = useToast ()
14
8
9
+ // Page info
10
+ useServerSeoMeta ({
11
+ title: ` ${nuxtifyConfig .brand ?.name } playground ` ,
12
+ description: ' This is the ${nuxtifyConfig.brand?.name} playground.' ,
13
+ })
14
+
15
15
// Functions
16
16
const clickDialog = () => {
17
17
// Dialog
@@ -43,7 +43,7 @@ const clickToast = () => {
43
43
<v-container >
44
44
<v-row >
45
45
<v-col cols =" 12" >
46
- <h1 >{{ nuxtifyConfig.brand?.name }}</h1 >
46
+ <h1 >{{ nuxtifyConfig.brand?.name }} playground </h1 >
47
47
</v-col >
48
48
</v-row >
49
49
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div >playground logo override</div >
2
+ <div >This is the AppLogo override component </div >
3
3
</template >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default defineNuxtConfig({
4
4
compatibilityDate : '2025-05-13' ,
5
5
nuxtifyCore : {
6
6
brand : {
7
- name : '@nuxtify/core playground ' ,
7
+ tagline : 'Catchy tagline ' ,
8
8
} ,
9
9
announcement : {
10
10
show : true ,
You can’t perform that action at this time.
0 commit comments