mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-14 12:42:51 +00:00
28 lines
586 B
Vue
28 lines
586 B
Vue
<template>
|
|
<MicroApps ref="app"/>
|
|
</template>
|
|
|
|
<script>
|
|
import MicroApps from "../../components/MicroApps";
|
|
|
|
export default {
|
|
components: { MicroApps },
|
|
|
|
async mounted() {
|
|
const id = this.$route.params.appId;
|
|
if (!id) {
|
|
$A.modalError("应用不存在");
|
|
return
|
|
}
|
|
|
|
const app = (await $A.IDBArray("cacheMicroApps")).reverse().find(item => item.id === id);
|
|
if (!app) {
|
|
$A.modalError("应用不存在");
|
|
return
|
|
}
|
|
|
|
await this.$refs.app.observeMicroApp(app)
|
|
}
|
|
}
|
|
</script>
|