- Replaced CartSheet and CartSidebar components with a new CartResponsive component that adapts to screen size, providing a unified cart experience. - Implemented responsive animations for the cart, allowing it to slide in from the right on desktop and from the bottom on mobile. - Updated styles and layout in tailwind.css to support new animation effects for the cart component.
6 lines
283 B
TypeScript
6 lines
283 B
TypeScript
export { default as CartItem } from './CartItem.vue'
|
|
export { default as CartSummary } from './CartSummary.vue'
|
|
export { default as CartEmpty } from './CartEmpty.vue'
|
|
export { default as CartFAB } from './CartFAB.vue'
|
|
export { default as CartResponsive } from './CartResponsive.vue'
|