Fixed Stats data storage.

This commit is contained in:
neviyn 2018-09-21 10:15:14 +01:00
parent 418563d70d
commit 78ef256d8d

View File

@ -8,9 +8,11 @@ import StatsView from "../components/StatsView";
export default { export default {
name: "stats", name: "stats",
components: { StatsView }, components: { StatsView },
data() { data: function() {
chartData: null; return {
options: null; chartData: null,
options: null
};
}, },
methods: { methods: {
getAllTimeAverage: function() { getAllTimeAverage: function() {