Skip to content

Commit 34f5be7

Browse files
authored
chore: migrate from vuex to pinia (#10366)
1 parent 47f1d24 commit 34f5be7

File tree

4 files changed

+29
-11
lines changed

4 files changed

+29
-11
lines changed

playground/ssr-vue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
},
1717
"dependencies": {
1818
"example-external-component": "file:example-external-component",
19+
"pinia": "^2.0.22",
1920
"vue": "^3.2.40",
20-
"vue-router": "^4.1.5",
21-
"vuex": "^4.0.2"
21+
"vue-router": "^4.1.5"
2222
},
2323
"devDependencies": {
2424
"@vitejs/plugin-vue": "workspace:*",

playground/ssr-vue/src/main.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { createPinia } from 'pinia'
12
import { createSSRApp } from 'vue'
23
import App from './App.vue'
34
import { createRouter } from './router'
@@ -7,6 +8,8 @@ import { createRouter } from './router'
78
// fresh store here.
89
export function createApp() {
910
const app = createSSRApp(App)
11+
const pinia = createPinia()
12+
app.use(pinia)
1013
const router = createRouter()
1114
app.use(router)
1215
return { app, router }

playground/ssr-vue/src/pages/Store.vue

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
</template>
44

55
<script>
6-
import { createStore } from 'vuex'
6+
import { defineStore } from 'pinia'
77
88
export default {
99
async setup() {
10-
const store = createStore({
11-
state: {
10+
const useFooStore = defineStore('foo-store', {
11+
state: () => ({
1212
foo: 'bar'
13-
}
13+
})
1414
})
15-
return store.state
15+
return useFooStore()
1616
}
1717
}
1818
</script>

pnpm-lock.yaml

+19-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)