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