暫無描述
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.

user.js 232B

1234567891011121314151617181920
  1. import {
  2. defineStore
  3. } from 'pinia'
  4. export const useUserStore = defineStore('user', {
  5. state: () => ({
  6. dept:[],
  7. post:[],
  8. userId:'',
  9. userDesc:'',
  10. userName:'LT',
  11. compName:''
  12. }),
  13. getters: {
  14. },
  15. actions: {
  16. },
  17. })