[Electron] Add electron-specific setup page (#1444)

* Add dummy server start view

* Do external nav

* nit

* nit

* nit

* nit
This commit is contained in:
Chenlei Hu
2024-11-06 19:39:09 -05:00
committed by GitHub
parent ea0883271e
commit 5e4439b905
3 changed files with 43 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
<!-- This is a dummy page built for electron app only. -->
<!-- Replace this page with the electron side logic on installation & log streaming. -->
<template>
<div
class="absolute inset-0 flex flex-col items-center justify-center h-screen bg-surface-0"
>
<ProgressSpinner class="w-16 h-16 mb-4" />
<div class="text-xl">{{ $t('loading') }}{{ counter }}</div>
</div>
</template>
<script setup lang="ts">
import ProgressSpinner from 'primevue/progressspinner'
import { useInterval } from '@vueuse/core'
const counter = useInterval(1000)
</script>