mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 05:42:45 +08:00
26 lines
408 B
Vue
26 lines
408 B
Vue
<template>
|
|
<el-col :lg="span" :md="24" :sm="24" :xl="span" :xs="24">
|
|
<div class="left-panel">
|
|
<slot></slot>
|
|
</div>
|
|
</el-col>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'VabQueryFormLeftPanel',
|
|
props: {
|
|
span: {
|
|
type: Number,
|
|
default: 14,
|
|
},
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
created() {},
|
|
mounted() {},
|
|
methods: {},
|
|
}
|
|
</script>
|