chore: initialize qiming workspace repository

This commit is contained in:
Codex
2026-05-29 14:22:48 +08:00
commit bfd67a0f2c
10750 changed files with 1885711 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<template>
<published-agent-list
agentType="PageApp"
:title="t('Mobile.Nav.app')"
></published-agent-list>
</template>
<script setup lang="uts">
import PublishedAgentList from '@/components/published-agent-list/published-agent-list.uvue'
import { onAddToFavorites } from '@dcloudio/uni-app'
import { useI18n } from "@/utils/i18n";
const { t } = useI18n();
// 收藏
onAddToFavorites(()=>{
return {
title: t("Mobile.Nav.app"),
}
})
</script>
<style lang="scss" scoped>
</style>