elk/components/pwa/PwaPrompt.client.vue

26 lines
728 B
Vue
Raw Normal View History

<script setup>
2022-12-23 18:26:28 +00:00
import { pwa } from '~/composables/pwa'
</script>
<template>
<div
2022-12-23 18:26:28 +00:00
v-if="pwa.needRefresh"
2022-12-23 18:05:48 +00:00
m-2 p5 bg="fade" relative
rounded-lg of-hidden
flex="~ col gap-3"
>
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-23 18:26:28 +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-23 18:26:28 +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>
</div>
2022-12-23 18:05:48 +00:00
<div i-ri-arrow-down-circle-line absolute text-8em bottom--10 right--10 text-primary op10 />
</div>
</template>