Skip to content

Commit dcb4121

Browse files
committed
fix(playground): don't use server seo meta
1 parent ab8192c commit dcb4121

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

playground/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const dialog = useDialog()
55
const toast = useToast()
66
77
// Page info
8-
useServerSeoMeta({
8+
useSeoMeta({
99
title: `${nuxtifyConfig.brand?.name} playground`,
1010
description: `This is the ${nuxtifyConfig.brand?.name} playground.`,
1111
})

playground/pages/test.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<script setup lang="ts">
2+
// App state
23
const nuxtifyConfig = useNuxtifyConfig()
4+
5+
// Page info
6+
useSeoMeta({
7+
title: 'Test',
8+
})
39
</script>
410

511
<template>

0 commit comments

Comments
 (0)