2023-01-25 15:26:51 +00:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
v-if="$pwa?.showInstallPrompt && !$pwa?.needRefresh"
|
|
|
|
m-2 p5 bg="primary-fade" relative
|
|
|
|
rounded-lg of-hidden
|
|
|
|
flex="~ col gap-3"
|
|
|
|
v-bind="$attrs"
|
|
|
|
>
|
|
|
|
<h2 flex="~ gap-2" items-center>
|
|
|
|
{{ $t('pwa.install_title') }}
|
|
|
|
</h2>
|
|
|
|
<div flex="~ gap-1">
|
|
|
|
<button type="button" btn-solid px-4 py-1 text-center text-sm @click="$pwa.install()">
|
|
|
|
{{ $t('pwa.install') }}
|
|
|
|
</button>
|
|
|
|
<button type="button" btn-text filter-saturate-0 px-4 py-1 text-center text-sm @click="$pwa.cancelInstall()">
|
|
|
|
{{ $t('pwa.dismiss') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
2023-01-25 16:06:16 +00:00
|
|
|
<div i-material-symbols:install-desktop-rounded absolute text-6em bottom--2 inset-ie--2 text-primary dark:text-white op10 class="-z-1 rtl-flip" />
|
2023-01-25 15:26:51 +00:00
|
|
|
</div>
|
|
|
|
</template>
|