<template>
<div class="group">
<slot></slot>
</div>
</template>
<script>
export default {
name: "butgroup2"
}
</script>
<style scoped lang="less">
.group {
width: 100%;
text-align: center;
display: flex;
justify-content: space-around;
align-content: center;
</style>