Skip to content

Commit 80295bf

Browse files
committed
dx: playground polish
1 parent 6d67b0c commit 80295bf

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

playground/app.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<script setup lang="ts">
22
import { 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
115
const nuxtifyConfig = useNuxtifyConfig()
126
const dialog = useDialog()
137
const 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
1616
const 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

playground/components/AppLogo.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<template>
2-
<div>playground logo override</div>
2+
<div>This is the AppLogo override component</div>
33
</template>

playground/nuxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)