You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
874 B
41 lines
874 B
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-13 17:54:56
|
|
* @LastEditTime: 2021-11-08 17:46:30
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/TailInsightDetails/popular-word-cloud/index.vue
|
|
-->
|
|
<template>
|
|
<div class="pwc-outter">
|
|
<v-label-div title="热门词云"></v-label-div>
|
|
<div class="pwc-inner">
|
|
<v-echarts :opt="opt" ></v-echarts>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import createOpt from "./opt"
|
|
export default {
|
|
name: "mtdPopularWordCloud",
|
|
data() {
|
|
return {
|
|
opt: createOpt()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.pwc-outter {
|
|
width: 460px;
|
|
height: 460px;
|
|
border: 2px solid #0f2a4d;
|
|
margin-left: 16px;
|
|
.pwc-inner {
|
|
width: 100%;
|
|
height: calc(100% - 48px);
|
|
}
|
|
}
|
|
</style>
|