mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
21 lines
303 B
Vue
21 lines
303 B
Vue
<template>
|
|
<el-col :span="24">
|
|
<div class="bottom-panel">
|
|
<slot></slot>
|
|
</div>
|
|
</el-col>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'VabQueryFormBottomPanel',
|
|
props: {},
|
|
data() {
|
|
return {}
|
|
},
|
|
created() {},
|
|
mounted() {},
|
|
methods: {},
|
|
}
|
|
</script>
|