-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #206 : added product details page #211
Conversation
✅ Deploy Preview for merch-site ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@ShashaankS Please show the "Share" button functionality. |
Screencast.from.07-18-2024.08.16.24.PM.webm@AkashPaloju On pressing share button, link is copied to clipboard with a success toast. |
Screencast.from.07-20-2024.12.22.04.PM.webm@Kushdapush @AkashPaloju Photo gallery functionality |
frontend/pages/products/[id].vue
Outdated
<script setup> | ||
import { ref, onMounted } from "vue"; | ||
import { useRoute } from "vue-router"; | ||
import { useCartStore } from "../../store/index.js"; // Assuming your store is located here |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this comment
frontend/pages/products/[id].vue
Outdated
const cartStore = useCartStore(); | ||
const router = useRouter(); | ||
const error = ref(); | ||
// const colorList = ["#32a852", "blue", "green"]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this too
frontend/tailwind.config.js
Outdated
"./layouts/default.vue", | ||
"./Frontend/**/*.{js,ts,jsx,tsx}", | ||
], | ||
// ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here too
Overview
Essential Checklist
Proof that changes are correct
Screencast.from.07-17-2024.01.51.01.AM.webm
This is how the add to cart button behaves as of now
PR Pointers