21 lines
266 B
Vue
21 lines
266 B
Vue
<template>
|
|
<div class="insectPest">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {}
|
|
},
|
|
mounted(){},
|
|
methods:{},
|
|
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
.insectPest{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style> |