Files
luos/resources/assets/js/home/TaskMetrics/VueCharts.vue

39 lines
599 B
Vue
Raw Normal View History

2021-07-30 20:18:11 +00:00
<template>
<div
id="v-pm-charts"
ref="v-pm-charts"
class="v-pm-charts vp-inline-block"
>
<vue-chart-lv-one/>
</div>
</template>
<script>
2021-08-04 16:25:56 +00:00
import VueChartLvZero from "./VueChartLvZero.vue";
2021-07-30 20:18:11 +00:00
import VueChartLvOne from "./VueChartLvOne.vue";
export default {
name: "VueCharts",
mixins: [],
components: {
2021-08-04 16:25:56 +00:00
VueChartLvZero,
2021-07-30 20:18:11 +00:00
VueChartLvOne,
},
props: [],
data() {
let that = this;
return {
width: 0,
};
},
created() {},
mounted() {},
watch: {},
computed: {},
updated() {},
beforeCreate() {},
methods: {},
};
</script>
<style>
</style>