热词统计增加下方表格

This commit is contained in:
chc
2022-08-11 10:32:26 +08:00
parent b77b4c0ef8
commit db51df89f7

View File

@@ -15,7 +15,9 @@
</div>
</Affix>
</div>
<div id="container"></div>
<Table border :columns="columns" :data="hotWordsData"></Table>
</div>
</template>
@@ -37,6 +39,16 @@ export default {
month: "",
top: 50
},
columns:[
{
title: "热词名称",
key: "keywords",
},
{
title: "搜索次数",
key: "score",
},
],
hotWordsChart:"", //图表
hotWordsData:[] //数据
};
@@ -95,4 +107,5 @@ export default {
.affix-time {
padding-left: 15px;
}
</style>