46 lines
867 B
Vue
46 lines
867 B
Vue
<template>
|
|
<div class="card floating" id="download">
|
|
<div class="card-title">
|
|
<h2>{{ $t("prompts.download") }}</h2>
|
|
</div>
|
|
|
|
<div class="card-content">
|
|
<p>{{ $t("prompts.downloadMessage") }}</p>
|
|
|
|
<button
|
|
v-for="(ext, format) in formats"
|
|
:key="format"
|
|
class="button button--block"
|
|
@click="currentPrompt.confirm(format)"
|
|
v-focus
|
|
>
|
|
{{ ext }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from "vuex";
|
|
|
|
export default {
|
|
name: "download",
|
|
data: function () {
|
|
return {
|
|
formats: {
|
|
zip: "zip",
|
|
tar: "tar",
|
|
targz: "tar.gz",
|
|
tarbz2: "tar.bz2",
|
|
tarxz: "tar.xz",
|
|
tarlz4: "tar.lz4",
|
|
tarsz: "tar.sz",
|
|
},
|
|
};
|
|
},
|
|
computed: {
|
|
...mapGetters(["currentPrompt"]),
|
|
},
|
|
};
|
|
</script>
|