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