File tree 2 files changed +11
-8
lines changed
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 24
24
<p >{{ item.quantity }} x {{ item.name }}: ${{ (parseFloat(item.price.replace('$', '')) * item.quantity).toFixed(2) }}</p >
25
25
</div >
26
26
<p class =" total" >Total: ${{ totalCartValue }}</p >
27
- <button class =" checkout-button" >Checkout</button >
27
+ <button class =" checkout-button" @click = " handleCheckout " >Checkout</button >
28
28
</div >
29
29
</div >
30
30
</div >
@@ -90,6 +90,10 @@ function decreaseQuantity(itemId) {
90
90
cartStore .removeItem (itemId)
91
91
}
92
92
}
93
+
94
+ function handleCheckout () {
95
+ throw new Error (' Checkout functionality not implemented yet!' )
96
+ }
93
97
</script >
94
98
95
99
<style scoped>
Original file line number Diff line number Diff line change @@ -19,7 +19,12 @@ export default ({ mode }) => {
19
19
} ,
20
20
plugins : [
21
21
vue ( ) ,
22
-
22
+ // Add the Codecov plugin
23
+ codecovVitePlugin ( {
24
+ enableBundleAnalysis : true ,
25
+ bundleName : "vue-store-pinia" , // Replace with your bundle project name
26
+ uploadToken : process . env . VITE_CODECOV_TOKEN ,
27
+ } ) ,
23
28
// Put the Sentry vite plugin after all other plugins
24
29
sentryVitePlugin ( {
25
30
org : "steven-eubank" ,
@@ -33,12 +38,6 @@ export default ({ mode }) => {
33
38
// excludeReplayWorker: true, // Only if you added replayIntegration
34
39
} ,
35
40
} ) ,
36
- // Add the Codecov plugin
37
- codecovVitePlugin ( {
38
- enableBundleAnalysis : true ,
39
- bundleName : "vue-store-pinia" , // Replace with your bundle project name
40
- uploadToken : process . env . VITE_CODECOV_TOKEN ,
41
- } ) ,
42
41
] ,
43
42
44
43
resolve : {
You can’t perform that action at this time.
0 commit comments