mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-02-03 03:31:41 +01:00
chore: add wrangler dependency to package.json
This commit is contained in:
@@ -10,7 +10,7 @@ const { messages } = useChatStore()
|
||||
const parents = useTemplateRef('parents')
|
||||
const { height } = useElementBounding(parents)
|
||||
|
||||
const { locale } = useI18n()
|
||||
const { locale } = useI18n({ useScope: 'global' })
|
||||
const lastLang = ref(locale.value)
|
||||
watch(
|
||||
height,
|
||||
|
||||
@@ -18,7 +18,7 @@ useSeoMeta({
|
||||
author: 'Arthur Danjou',
|
||||
})
|
||||
|
||||
const { t } = useI18n()
|
||||
const { t } = useI18n({ useScope: 'global' })
|
||||
|
||||
useSeoMeta(project.value.seo || {})
|
||||
</script>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts" setup>
|
||||
const { t } = useI18n()
|
||||
const { t } = useI18n({ useScope: 'global' })
|
||||
useSeoMeta({
|
||||
title: 'My Projects',
|
||||
description: t('projects.description'),
|
||||
|
||||
@@ -12,7 +12,7 @@ if (!writing.value) {
|
||||
})
|
||||
}
|
||||
|
||||
const { t } = useI18n()
|
||||
const { t } = useI18n({ useScope: 'global' })
|
||||
|
||||
useSeoMeta(writing.value.seo || {})
|
||||
</script>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts" setup>
|
||||
const { t } = useI18n()
|
||||
const { t } = useI18n({ useScope: 'global' })
|
||||
useSeoMeta({
|
||||
title: 'My Shelf - Arthur DANJOU',
|
||||
description: t('writings.description'),
|
||||
|
||||
Reference in New Issue
Block a user