Managed to load a page

This commit is contained in:
Julien Nahum
2023-10-14 17:31:30 +02:00
parent 6adcc52072
commit 358bf0e4d0
21 changed files with 3571 additions and 12963 deletions

9
resources/js/store/modules/app.js vendored Normal file
View File

@@ -0,0 +1,9 @@
export const state = {
layout: 'default'
}
export const mutations = {
setLayout (state, layout) {
state.layout = layout ?? 'default'
}
}