mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-25 02:46:39 +07:00
15 lines
219 B
Vue
15 lines
219 B
Vue
<template>
|
|
<div :class="[$attrs.class, $style.buttons]">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<style lang="scss" module>
|
|
.buttons {
|
|
& > * {
|
|
margin: 0 15px 15px 0;
|
|
}
|
|
}
|
|
</style>
|