templateBase.js 288 B

1234567891011
  1. import { defineStore } from "pinia";
  2. export const useTemplateBaseStore = defineStore("templateBase", {
  3. state: () => ({
  4. webSiteName: "测试测试测试",
  5. }),
  6. actions: {
  7. setWebSiteName(webSiteName) {
  8. this.webSiteName = webSiteName
  9. }
  10. }
  11. })