Files

39 lines
578 B
Vue
Raw Normal View History

2021-11-22 09:17:41 +08:00
<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>