新型管道消毒机前端代码
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.

20 lines
437 B

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