slider.js 429 B

12345678910111213141516
  1. // 定义侧边栏显示与否
  2. import { defineStore } from "pinia"; // 若用Pinia,若用Vuex类似
  3. export const useSliderStore = defineStore("slider", {
  4. state: () => ({
  5. // 其他原有状态...
  6. sidebarShow: false, // 新增:侧边栏显示状态(全局存储)
  7. }),
  8. actions: {
  9. // 新增:更新侧边栏显示状态的方法
  10. updateSidebarShow(show) {
  11. this.sidebarShow = show;
  12. },
  13. },
  14. });