ludo237/vuejs-carousel

View on GitHub
src/store/states.js

Summary

Maintainability
A
0 mins
Test Coverage
export const state = {

    /**
     * Each time a photo is selected from
     * the gallery this property became a
     * Photo Object
     * 
     * @type {Object}
     */
    selectedPhoto: {},

    /**
     * List of photos available inside
     * the gallery.
     * 
     * @type {Array}
     */
    photos: []
};