index.ts 299 B

123456789101112131415161718
  1. import { defineStore } from "pinia";
  2. export const useStore = defineStore("home", {
  3. // 相当于data
  4. state: () => {
  5. return {
  6. };
  7. },
  8. // 相当于计算属性
  9. getters: {},
  10. // 相当于vuex的 mutation + action,可以同时写同步和异步的代码
  11. actions: {
  12. },
  13. });