chore: initialize qiming workspace repository
This commit is contained in:
26
qiming-mobile/pages/page-app/page-app.uvue
Normal file
26
qiming-mobile/pages/page-app/page-app.uvue
Normal 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>
|
||||
Reference in New Issue
Block a user