feat: npm底部tab

This commit is contained in:
chenjinsong
2021-07-05 22:58:12 +08:00
parent c426084934
commit 22f46be258
10 changed files with 98 additions and 114 deletions

View File

@@ -0,0 +1,25 @@
<template>
<div class="chart__legend"></div>
</template>
<script>
export default {
name: 'StatisticsLegend',
props: {
data: Array
},
watch: {
data: {
immediate: true,
deep: true,
handler (n) {
// console.info(n)
}
}
}
}
</script>
<style scoped>
</style>