mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
26 lines
408 B
Vue
26 lines
408 B
Vue
<template>
|
|
<el-col :xs="24" :sm="24" :md="24" :lg="span" :xl="span">
|
|
<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>
|