数据模块
数据展示
<avue-data-display :option="option"></avue-data-display>
<script>
export default {
data() {
return {
form:{},
option:{
data:[
{
count: 100,
title: '日活跃数',
href:'https://avue.top',
target:'_blank'
},
{
count: '3,000',
title: '月活跃数',
href:'https://avue.top',
target:'_blank'
},
{
count: '20,000',
title: '年活跃数',
href:'https://avue.top',
target:'_blank'
},
{
count: '40,000',
title: '周活跃数',
href:'https://avue.top',
target:'_blank'
}
]
},
};
}
}
</script>