File size: 575 Bytes
670a607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
export default {
    getData(key, defaultValue) {
        return this.questionManager.getData(key, defaultValue);
    },

    setData(key, value) {
        this.questionManager.setData(key, value);
        return this;
    },

    incData(key, inc, defaultValue) {
        this.questionManager.incData(key, inc, defaultValue);
        return this;
    },

    mulData(key, mul, defaultValue) {
        this.questionManager.mulData(key, mul, defaultValue);
        return this;
    },

    clearData() {
        this.questionManager.clearData();
        return this;
    },
};