钟铮锁App web部分 需要打包放进对应的安卓项目 生成apk 才能正常使用功能
he wei
2025-01-19 ba2cfa9907623c094e6e2d52d12dc3055ddd587a
1
2
3
4
5
6
7
8
9
10
11
12
import { defineStore } from "pinia";
 
export const useMenuStore = defineStore("menu", {
  state() {
    return {
      isOpen: false,
    };
  },
  actions: {
  },
  getters: {},
});