37 lines
435 B
Vue
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>
|