LtyhShop/pc/app.vue
2025-04-09 14:59:26 +08:00

39 lines
2.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<!-- 路由出口 -->
<NuxtLayout>
<NuxtPage></NuxtPage>
</NuxtLayout>
</template>
<script setup lang="ts">
import { useAppStore } from '~/stores/app'
import { GlobalDatas } from '~/types/user'
const appStore = useAppStore()
const globalData = computed(() => reactive<GlobalDatas>(<GlobalDatas>appStore?.globalData))
useSeoMeta({
title: `PC商城-Java商城`,
ogTitle: `PC商城-Java商城`,
ogDescription:
'Java商城PC商城CRMEB开源商城系统新零售社交电商小程序商城公众号商城免费商城系统源码商城系统开发开源商城系统微商城源码直播商城系统多商户商城B2B2C私域电商分销商城高性能商城系统陀螺匠OA系统',
description:
'Java商城PC商城CRMEB开源商城系统新零售社交电商小程序商城公众号商城免费商城系统源码商城系统开发开源商城系统微商城源码直播商城系统多商户商城B2B2C私域电商分销商城高性能商城系统陀螺匠OA系统',
})
useHead({
titleTemplate: `%s`,
meta: [
{
name: 'description',
content:
'Java商城PC商城CRMEB开源商城系统新零售社交电商小程序商城公众号商城免费商城系统源码商城系统开发开源商城系统微商城源码直播商城系统多商户商城B2B2C私域电商分销商城高性能商城系统陀螺匠OA系统',
},
{
name: 'keywords',
content:
'CRMEB开源商城系统围绕新零售、品牌连锁、商家入驻等多种商业模式自主研发B2C商城系统、B2B2C多商户商城系统、连锁多门店商城系统、跨境电商系统等应用于直播电商、社交新零售、商家入驻等多种应用场景系统支持多语言、多端登录代码开源、独立部署、永久免费升级。',
},
],
bodyAttrs: {
class: 'test',
},
})
</script>