Files
xl-mobile/src/components/XButton.vue

28 lines
486 B
Vue
Raw Normal View History

2025-04-07 18:04:39 +08:00
<script setup>
</script>
<template>
<view class="x-button">
<slot></slot>
</view>
</template>
<style scoped lang="scss">
.x-button {
color: #fff;
background-color: var(--primary-color);
padding: 22rpx 0;
display: flex;
align-items: center;
justify-content: center;
color: rgb(255, 255, 255);
font-size: 14px;
font-weight: 400;
line-height: 22px;
letter-spacing: 0;
text-align: left;
border-radius: 8rpx;
}
</style>