2020-10-21 12:22:46 +08:00

37 lines
435 B
Vue

<!-- -->
<template>
<div class="boderAndRadius ground">
<ground-table />
</div>
</template>
<script>
import groundTable from './groundTable'
export default {
data () {
return {
}
},
components: {
groundTable
},
computed: {},
beforeMount () {},
mounted () {},
methods: {},
watch: {}
}
</script>
<style lang='less' scoped>
.ground {
padding: 28px;
position: relative;
}
</style>