app.js 186 B

12345678910
  1. import { defineStore } from "pinia";
  2. export const useAppStore = defineStore({
  3. id: "app",
  4. state: () => ({
  5. siteInfo: null, // 站点信息
  6. }),
  7. getters: {},
  8. actions: {},
  9. });