22 lines
305 B
Vue
22 lines
305 B
Vue
|
|
|
||
|
|
|
||
|
|
<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>
|