mirror of
https://github.com/bellingcat/auto-archiver-setup-tool.git
synced 2026-06-12 05:28:36 +03:00
Initial working version
This commit is contained in:
30
src/components/DocList.vue
Normal file
30
src/components/DocList.vue
Normal file
@@ -0,0 +1,30 @@
|
||||
<template>
|
||||
<v-container>
|
||||
<div class="text-h5 mt-5 mb-3" v-if="docs.length > 0">
|
||||
Your auto-archiver documents
|
||||
</div>
|
||||
<v-row v-for="doc in docs" :key="doc.sheetId">
|
||||
<v-col>
|
||||
<DocCard :doc="doc" />
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DocCard from "@/components/DocCard.vue";
|
||||
|
||||
export default {
|
||||
name: "DocList",
|
||||
components: {
|
||||
DocCard,
|
||||
},
|
||||
computed: {
|
||||
docs() {
|
||||
return this.$store.state.docs;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
Reference in New Issue
Block a user