index.vue
345 Bytes
<template>
<div class="home">
<div class="home-left">
<wgsl></wgsl>
</div>
</div>
</template>
<script>
// 监管首页
import wgsl from "./wgsl.vue";
export default {
name: "home",
components: { wgsl },
data () {
return {};
},
methods: {},
};
</script>
<style scoped lang="scss">
@import "./home.scss";
</style>