Merge branch 'bug-fixes' into feature

This commit is contained in:
Hykilpikonna
2019-08-22 21:05:51 +08:00
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export default class App extends Vue
public courses = null;
public selectedTab: string = "";
public selectedTab: string = "overall";
/**
* This is called when the user logs in.
@@ -4,7 +4,8 @@ import {Component, Vue} from 'vue-property-decorator';
})
export default class GraphOverall extends Vue
{
public chartData = {
public chartData =
{
columns: ['日期', '访问用户', '下单用户', '下单率'],
rows: [
{ '日期': '1/1', '访问用户': 1393, '下单用户': 1093, '下单率': 0.32 },
@@ -1,6 +1,6 @@
<template>
<div id="graph-overall">
<ve-line :data="chartData"></ve-line>
<ve-line :data="chartData" :extend="{series: {smooth: false}}"></ve-line>
</div>
</template>