ag-element-ui/packages/agRow/src/index.vue

26 lines
323 B
Vue
Raw Normal View History

2024-08-23 17:06:01 +08:00
<template>
<div class="agRowbox">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'agRow',
data(){
return {
}
},
props:{
},
}
</script>
<style lang="scss" scoped>
.agRowbox{
display: flex;
flex-wrap: wrap;
}
</style>