2021-10-01 14:40:07 +00:00
|
|
|
<template>
|
2021-10-15 18:45:41 +00:00
|
|
|
<div>
|
2021-10-15 21:07:41 +00:00
|
|
|
<!-- <CollectQuotesExplain /> -->
|
2021-10-15 18:45:41 +00:00
|
|
|
<CollectQuote v-for="quote in quotes" :key="quote.id" :quote="quote" />
|
2021-10-01 14:40:07 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
2021-10-04 06:46:36 +00:00
|
|
|
export default {
|
|
|
|
computed: {
|
|
|
|
quotes() {
|
|
|
|
return this.$store.state.myQuotes.quotes
|
|
|
|
},
|
|
|
|
},
|
|
|
|
async fetch() {
|
|
|
|
await this.$engine.getMyQuotes()
|
|
|
|
},
|
2021-10-01 14:40:07 +00:00
|
|
|
}
|
|
|
|
</script>
|