()
| 63 | return _.sortBy(_.flatten(Object.values(this.problemsByLevel), true), p => -p.count) |
| 64 | }, |
| 65 | problemCountByLevel () { |
| 66 | return _.mapValues(this.problemsByLevel, problems => _.reduce(_.map(problems, 'count'), (a, b) => a + b)) |
| 67 | } |
| 68 | }, |
| 69 | created: co.wrap(function * () { |
| 70 | this.levelSlug = this.$options.propsData.levelSlug |
nothing calls this directly
no outgoing calls
no test coverage detected