💄 (pwa) separate buttons

This commit is contained in:
Julien Calixte
2023-07-18 00:23:47 +02:00
parent f2d464ce74
commit 08fab78b66

View File

@@ -24,14 +24,16 @@ const close = async () => {
New content available, click on reload button to update.
</span>
</div>
<button
class="button is-primary"
v-if="needRefresh"
@click="updateServiceWorker()"
>
Reload
</button>
<button class="button" @click="close">Close</button>
<div class="buttons">
<button
class="button is-primary"
v-if="needRefresh"
@click="updateServiceWorker()"
>
Reload
</button>
<button class="button" @click="close">Close</button>
</div>
</div>
</template>