招聘网页
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.

index.ts 277B

1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
12345678910111213
  1. import { createStore } from 'vuex';
  2. import { state } from './state';
  3. import { mutations } from './mutations';
  4. import { permissionsModule } from './usePermissionStore';
  5. export const store = createStore({
  6. state,
  7. mutations,
  8. modules: {
  9. permissions: permissionsModule,
  10. }
  11. })