12345678910111213141516171819202122232425262728293031323334 |
- import { defineStore } from 'pinia'
- import { useUserStore } from './user'
- import { getCartBrandQuantityApi } from '~/api/model/cart'
- import { getNoticeRemindApi } from '~/api/model/common'
- export const useCommonStore = defineStore(
- 'commonStore',
- () => {
- const customNavigateColor = ref<string>('text-#fff')
-
-
-
-
-
-
-
-
-
-
-
-
-
- return {
- customNavigateColor,
- }
- },
- {
- persist: true,
- },
- )
|