mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
31 lines
778 B
Vue
31 lines
778 B
Vue
<script lang="ts" setup>
|
|
import { buttonProps } from '@/components/BasicButton/prpos';
|
|
|
|
const props = defineProps(buttonProps);
|
|
const emits = defineEmits(['click']);
|
|
const click = () => {
|
|
emits('click');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<view class="default-btn" :disabled="props.disabled" @tap="click"><slot></slot></view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.default-btn {
|
|
color: $uni-text-color-inverse;
|
|
border-width: 4rpx;
|
|
border-color: $nui-button-border-color;
|
|
border-style: solid;
|
|
border-radius: $uni-border-radius-base;
|
|
background-color: $nui-button-bg-color;
|
|
padding: 12rpx 26rpx;
|
|
display: inline-block;
|
|
font-size: $uni-font-size-sm;
|
|
&:hover {
|
|
background-color: $nui-button-bg-hover-color;
|
|
}
|
|
}
|
|
</style>
|