2022-12-18 00:29:16 +01:00
|
|
|
<template>
|
|
|
|
<div
|
2022-12-28 15:08:03 +01:00
|
|
|
v-if="$pwa?.needRefresh"
|
2022-12-23 19:05:48 +01:00
|
|
|
m-2 p5 bg="fade" relative
|
|
|
|
rounded-lg of-hidden
|
|
|
|
flex="~ col gap-3"
|
2022-12-18 00:29:16 +01:00
|
|
|
>
|
2022-12-23 19:26:28 +01:00
|
|
|
<h2 flex="~ gap-2" items-center>
|
2022-12-23 19:05:48 +01:00
|
|
|
{{ $t('pwa.title') }}
|
|
|
|
</h2>
|
|
|
|
<div flex="~ gap-1">
|
2022-12-28 15:08:03 +01:00
|
|
|
<button type="button" btn-solid px-4 py-1 text-center text-sm @click="$pwa.updateServiceWorker()">
|
2022-12-23 19:05:48 +01:00
|
|
|
{{ $t('pwa.update') }}
|
|
|
|
</button>
|
2022-12-28 15:08:03 +01:00
|
|
|
<button type="button" btn-text filter-saturate-0 px-4 py-1 text-center text-sm @click="$pwa.close()">
|
2022-12-23 19:05:48 +01:00
|
|
|
{{ $t('pwa.dismiss') }}
|
|
|
|
</button>
|
2022-12-18 00:29:16 +01:00
|
|
|
</div>
|
2023-01-01 15:29:11 +01:00
|
|
|
<div i-ri-arrow-down-circle-line absolute text-8em bottom--10 inset-ie--10 text-primary op10 class="-z-1" />
|
2022-12-18 00:29:16 +01:00
|
|
|
</div>
|
|
|
|
</template>
|