This commit is contained in:
2022-11-14 11:56:21 +08:00
commit 0a63adba99
337 changed files with 25661 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
.layui-btn-container {
font-size: 0;
}
.layui-btn-container .layui-btn {
margin-right: 10px;
margin-bottom: 10px;
}
.layui-btn-container .layui-btn + .layui-btn {
margin-left: 0;
}

View File

@@ -0,0 +1,5 @@
import { withInstall, WithInstallType } from "../../utils";
import Component from "./index.vue";
const component: WithInstallType<typeof Component> = withInstall(Component);
export default component;

View File

@@ -0,0 +1,15 @@
<script lang="ts">
export default {
name: "LayButtonContainer",
};
</script>
<script setup lang="ts">
import "./index.less";
</script>
<template>
<div class="layui-btn-container">
<slot></slot>
</div>
</template>