消毒机前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
318 B

  1. import { defineStore } from 'pinia'
  2. export const useFormulaStore = defineStore({
  3. id: 'formula', // id必填,且需要唯一
  4. // state
  5. state: () => {
  6. return {
  7. formulaList: [],
  8. }
  9. },
  10. // actions
  11. actions: {
  12. updateFormulaList(formulaList) {
  13. this.formulaList = formulaList
  14. },
  15. },
  16. })