We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e996e0 commit b10978fCopy full SHA for b10978f
3 files changed
dev-packages/e2e-tests/test-applications/vue-3/package.json
@@ -16,7 +16,7 @@
16
},
17
"dependencies": {
18
"@sentry/vue": "latest || *",
19
- "pinia": "^2.2.3",
+ "pinia": "^3.0.0",
20
"vue": "^3.4.15",
21
"vue-router": "^4.2.5"
22
dev-packages/e2e-tests/test-applications/vue-3/src/stores/cart.ts
@@ -1,7 +1,6 @@
1
import { acceptHMRUpdate, defineStore } from 'pinia';
2
3
-export const useCartStore = defineStore({
4
- id: 'cart',
+export const useCartStore = defineStore('cart', {
5
state: () => ({
6
rawItems: [] as string[],
7
}),
packages/vue/package.json
@@ -44,7 +44,7 @@
44
"@sentry/core": "8.54.0"
45
46
"peerDependencies": {
47
- "pinia": "2.x",
+ "pinia": "2.x || 3.x",
48
"vue": "2.x || 3.x"
49
50
"peerDependenciesMeta": {
0 commit comments