add a hardcoded id to store

This commit is contained in:
Andreas Zweili 2021-06-29 22:02:56 +02:00
parent fe81f36728
commit e3ab95bad6
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,11 @@ import coachesModule from './modules/coaches/index';
const store = createStore({
modules: {
coaches: coachesModule
},
state() {
return {
userId: 'c3'
};
}
});