增加内置浏览器打开引导

This commit is contained in:
yml
2026-06-15 00:55:12 +08:00
parent 4a0d615926
commit 2a8c1e5c37
3 changed files with 200 additions and 0 deletions
+2
View File
@@ -3,6 +3,7 @@ import { RouterView } from 'vue-router'
import { computed } from 'vue'
import { useRoute } from 'vue-router'
import InAppBrowserPrompt from './components/InAppBrowserPrompt.vue'
import AdminLayout from './layouts/AdminLayout.vue'
import AppLayout from './layouts/AppLayout.vue'
@@ -24,4 +25,5 @@ const layout = computed(() => {
<AppLayout v-else>
<RouterView />
</AppLayout>
<InAppBrowserPrompt />
</template>