mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 19:22:57 +00:00

Former-commit-id: 30b18e418111df00903965a7e4135441cd1767a1 [formerly 60393b5e1a291d1aab2313e7dd8cd2e1e203c03b] [formerly c372bc1355db36d2d7b0bc602977616ae52a141c [formerly 6ee846ef0eab0f3b91ff3557877cd2eb63acb505]] Former-commit-id: c6c5aa9646c78fe86af74aac00cc1c7c307ad678 [formerly 6d3accd032458203105a474b0f8204d8206c2440] Former-commit-id: ab35a8effb0b01406bef44328ef3c45f5ea1cbfd
27 lines
659 B
Vue
27 lines
659 B
Vue
<template>
|
|
<div class="prompt">
|
|
<h3>{{ $t('prompts.replace') }}</h3>
|
|
<p>{{ $t('prompts.replaceMessage') }}</p>
|
|
|
|
<div>
|
|
<button class="ok"
|
|
@click="showConfirm"
|
|
:aria-label="$t('buttons.replace')"
|
|
:title="$t('buttons.replace')">{{ $t('buttons.replace') }}</button>
|
|
<button class="cancel"
|
|
@click="$store.commit('closeHovers')"
|
|
:aria-label="$t('buttons.cancel')"
|
|
:title="$t('buttons.cancel')">{{ $t('buttons.cancel') }}</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
name: 'replace',
|
|
computed: mapState(['showConfirm'])
|
|
}
|
|
</script>
|