mirror of
https://github.com/bellingcat/auto-archiver-setup-tool.git
synced 2026-06-11 21:18:38 +03:00
31 lines
528 B
Vue
31 lines
528 B
Vue
<template>
|
|
<div style="margin-bottom: 1em">
|
|
<div class="text-h5 mt-5 mb-3" v-if="docs.length > 0">
|
|
Your auto-archiver sheets
|
|
</div>
|
|
<v-row v-for="doc in docs" :key="doc.sheetId">
|
|
<v-col>
|
|
<DocCard :doc="doc" />
|
|
</v-col>
|
|
</v-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DocCard from "@/components/DocCard.vue";
|
|
|
|
export default {
|
|
name: "DocList",
|
|
components: {
|
|
DocCard,
|
|
},
|
|
computed: {
|
|
docs() {
|
|
return this.$store.state.docs;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|