mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-09 15:52:42 +08:00
32 lines
498 B
Vue
32 lines
498 B
Vue
![]() |
<template>
|
||
|
<view class="charts" v-if="show">
|
||
|
<charts :config="config" :key="key" ref="charts"></charts>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script>
|
||
|
import charts from './charts.vue'
|
||
|
import chartsJs from '../chartsJs.js'
|
||
|
export default {
|
||
|
mixins: [chartsJs],
|
||
|
components: {
|
||
|
charts
|
||
|
},
|
||
|
props: {
|
||
|
config: {
|
||
|
type: Object,
|
||
|
default: () => {}
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
key: +new Date(),
|
||
|
}
|
||
|
},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
.charts {
|
||
|
padding: 20rpx;
|
||
|
}
|
||
|
</style>
|