wgsl.vue
520 Bytes
<template>
<div class="wgsl">
<div id="wgsl-myChart" class="chart"></div>
</div>
</template>
<script>
// 网络情况
export default {
name: "wgsl",
components: {},
data () {
return {};
},
mounted () {
},
methods: {
},
};
</script>
<style scoped lang="scss">
@import "./home.scss";
.wgsl {
width: 100%;
height: 100%;
.chart {
width: 100%;
height: 100%;
background: url("./images/map.png") 50% 50% no-repeat;
}
}
</style>