1 Star 0 Fork 0

gitdong/chat_pc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.vue 865 Bytes
一键复制 编辑 原始数据 按行查看 历史
gaofei 提交于 2023-09-22 23:55 . init
<script lang="ts" setup>
import { ID_INJECTION_KEY, ElConfigProvider } from 'element-plus'
import zhCn from 'element-plus/es/locale/lang/zh-cn'
import { useAppStore } from './stores/app'
import { addVisit } from './api/shop'
provide(ID_INJECTION_KEY, {
prefix: 100,
current: 0
})
const config = {
locale: zhCn
}
const appStore = useAppStore()
const { pc_title, pc_ico, pc_keywords, pc_desc } = appStore.getWebsiteConfig
useHead({
title: pc_title,
meta: [
{ name: 'description', content: pc_desc },
{ name: 'keywords', content: pc_keywords }
],
link: [
{
rel: 'icon',
href: pc_ico
}
]
})
addVisit()
</script>
<template>
<ElConfigProvider v-bind="config">
<NuxtLoadingIndicator color="#4a5dff" :height="2" />
<NuxtPage />
</ElConfigProvider>
</template>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gitdonggaofei/chat_pc.git
git@gitee.com:gitdonggaofei/chat_pc.git
gitdonggaofei
chat_pc
chat_pc
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385