39 lines
578 B
Vue
39 lines
578 B
Vue
![]() |
<template>
|
||
|
<div>
|
||
|
<container3>
|
||
|
<img src="./snap.png" style="width: 100%;height:100%">
|
||
|
</container3>
|
||
|
</div>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import container3 from "../components/container3/index.vue";
|
||
|
|
||
|
import echarts from 'echarts'
|
||
|
require('echarts/theme/macarons') // echarts theme
|
||
|
import resize from '../../dashboard/mixins/resize'
|
||
|
export default {
|
||
|
mixins: [resize],
|
||
|
name: 'left1',
|
||
|
components: {
|
||
|
container3,
|
||
|
},
|
||
|
data () {
|
||
|
return {}
|
||
|
},
|
||
|
mounted () {
|
||
|
|
||
|
},
|
||
|
beforeDestroy () {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
</style>
|