aboutsummaryrefslogtreecommitdiff
path: root/resources/vue/store/courseware/courseware-links.module.js
blob: ed198d079aaa6553602245d6e63fe5b0f845f94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const getDefaultState = () => {
    return {
    };
};

const initialState = getDefaultState();

const getters = {

};

export const state = { ...initialState };

export const actions = {
    // setters

    // other actions
};

export const mutations = {

};

export default {
    state,
    actions,
    mutations,
    getters,
};