diff --git a/src/views/explorer/ExplorerCard.vue b/src/views/explorer/ExplorerCard.vue new file mode 100644 index 0000000..ad3f482 --- /dev/null +++ b/src/views/explorer/ExplorerCard.vue @@ -0,0 +1,33 @@ + + + diff --git a/src/views/explorer/explorer.vue b/src/views/explorer/explorer.vue index 694abac..d8707c8 100644 --- a/src/views/explorer/explorer.vue +++ b/src/views/explorer/explorer.vue @@ -2,6 +2,7 @@ import { ref } from 'vue'; import { onMounted } from 'vue'; import videosData from './videos.json'; +import ExplorerCard from '@/views/explorer/ExplorerCard.vue'; // Data const mostLikedVideos = videosData.mostLikedVideos; @@ -13,6 +14,7 @@ const mostViewedVideos = videosData.mostViewedVideos; const currentRangeLiked = ref(0); const currentRangeBought = ref(0); const currentRangeShared = ref(0); +const currentRangeViewed = ref(0); const videosPerRow = 4; const animationDirection = ref(''); @@ -51,7 +53,7 @@ onMounted(() => { }); -