--------- Co-authored-by: Joep <jcbuhre@gmail.com> Co-authored-by: Omar Hussein <omarmohammad1951@gmail.com> Co-authored-by: Oleg Lobanov <oleg@lobanov.me>
13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import { createPinia as _createPinia } from "pinia";
|
|
import { markRaw } from "vue";
|
|
import { Router } from "vue-router";
|
|
|
|
export default function createPinia(router: Router) {
|
|
const pinia = _createPinia();
|
|
pinia.use(({ store }) => {
|
|
store.router = markRaw(router);
|
|
});
|
|
|
|
return pinia;
|
|
}
|