Files
planilla/ui/src/stores/useUI.js
josedario87 421ff236ae
Some checks failed
build-and-deploy / filter (push) Successful in 4s
build-and-deploy / build (push) Failing after 19s
build-and-deploy / deploy (push) Has been skipped
avances poderosos en ui
2025-05-25 08:21:57 -06:00

21 lines
401 B
JavaScript

// src/stores/useUi.js
import { defineStore } from 'pinia'
export const useUi = defineStore('ui', {
state: () => ({
sidebarOpen: true, // visible por defecto en desktop
}),
actions: {
toggleSidebar () {
this.sidebarOpen = !this.sidebarOpen
},
closeSidebar () {
this.sidebarOpen = false
},
openSidebar () {
this.sidebarOpen = true
},
},
})