32 lines
692 B
Vue
32 lines
692 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
cars:Array
|
|
});
|
|
|
|
//const {cars} = useCars();
|
|
|
|
const favorite = useLocalStorage("favorite",{});
|
|
|
|
const handleFavorite = (id) => {
|
|
if (id in favorite.value) {
|
|
delete favorite.value[id];
|
|
} else {
|
|
favorite.value = {
|
|
...favorite.value,
|
|
[id]: true
|
|
}
|
|
}
|
|
};
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full">
|
|
<ClientOnly>
|
|
<CarCard v-for="car in cars" :key="car.id" :car="car"
|
|
@favor="handleFavorite"
|
|
:favored="car.id in favorite"
|
|
/>
|
|
</ClientOnly>
|
|
</div>
|
|
</template> |