slides.ts 203 B

123456789101112131415161718192021222324
  1. const state = {
  2. slides: [],
  3. slideIndex: 0,
  4. }
  5. const getters = {
  6. }
  7. const mutations = {
  8. }
  9. const actions = {
  10. }
  11. export default {
  12. namespaced: true,
  13. state,
  14. getters,
  15. mutations,
  16. actions,
  17. }