errorLog.js 341 B

123456789101112131415161718
  1. import { defineStore } from 'pinia'
  2. export const useErrorlog = defineStore('errorLog', {
  3. state: () => ({
  4. logs: [],
  5. }),
  6. actions: {
  7. addErrorLog(log) {
  8. // 可以根据需要将错误上报给服务器
  9. // ....code.......
  10. this.logs.push(log)
  11. },
  12. clearErrorLog() {
  13. this.logs.splice(0)
  14. },
  15. },
  16. })