group.js 265 B

1234567891011
  1. import { ref, computed } from 'vue'
  2. import { defineStore } from 'pinia'
  3. import lang from '../i18n/i18n';
  4. const useGroupStore = defineStore('group', () => {
  5. const tag = ref("")
  6. const name = ref(lang.inbox)
  7. return { tag, name }
  8. })
  9. export default useGroupStore