mirror of
https://gitlab.com/little-lines/frontend.git
synced 2024-11-24 14:26:53 +00:00
fix handleClick
This commit is contained in:
parent
d6013d5fa2
commit
b0d6784462
1 changed files with 6 additions and 10 deletions
|
@ -17,10 +17,6 @@
|
||||||
@click="handleClick(favorite)"
|
@click="handleClick(favorite)"
|
||||||
>
|
>
|
||||||
|
|
||||||
<!-- <template v-slot:prepend>
|
|
||||||
<v-icon class="icon-pin"></v-icon>
|
|
||||||
</template> -->
|
|
||||||
|
|
||||||
<template v-slot:prepend>
|
<template v-slot:prepend>
|
||||||
<v-icon class="icon-pin"></v-icon>
|
<v-icon class="icon-pin"></v-icon>
|
||||||
</template>
|
</template>
|
||||||
|
@ -41,6 +37,10 @@ export default {
|
||||||
setup() {
|
setup() {
|
||||||
const favorite = ref([]);
|
const favorite = ref([]);
|
||||||
|
|
||||||
|
const handleClick = (favoriteItem) => {
|
||||||
|
console.log('Clicked:', favoriteItem);
|
||||||
|
};
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
try {
|
try {
|
||||||
const currentUser = JSON.parse(sessionStorage.getItem('current_user'));
|
const currentUser = JSON.parse(sessionStorage.getItem('current_user'));
|
||||||
|
@ -58,15 +58,11 @@ export default {
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleClick = (favorite) => {
|
|
||||||
console.log('Clicked:', favorite);
|
|
||||||
};
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
favorite
|
favorite,
|
||||||
|
handleClick
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue