mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-12-28 12:10:20 +08:00
18 lines
381 B
JavaScript
18 lines
381 B
JavaScript
import { defineStore } from 'pinia'
|
|
|
|
export const useAppStore = defineStore('app', {
|
|
state() {
|
|
return {
|
|
themeOverrides: {
|
|
common: {
|
|
primaryColor: '#316c72',
|
|
primaryColorSuppl: '#316c72',
|
|
primaryColorHover: '#316c72',
|
|
successColorHover: '#316c72',
|
|
successColorSuppl: '#316c72',
|
|
},
|
|
},
|
|
}
|
|
},
|
|
})
|