mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
27 lines
No EOL
606 B
Vue
27 lines
No EOL
606 B
Vue
<template>
|
|
<div>
|
|
<history-card
|
|
v-for="(historyVideo, index) in historyVideos"
|
|
:key="index"
|
|
:video="historyVideo"
|
|
@deleted="deleteHistoryVideo(index)"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import historyCard from "../components/historyCard.vue";
|
|
export default {
|
|
components: { historyCard },
|
|
computed: {
|
|
historyVideos() {
|
|
return this.$store.state.history.historyVideos;
|
|
},
|
|
},
|
|
methods: {
|
|
deleteHistoryVideo(target) {
|
|
this.$store.commit("history/removeHistory", target);
|
|
},
|
|
},
|
|
};
|
|
</script> |