猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
589 B

<template>
<view class="submit-but">
<slot name="tips"></slot>
<view class="submit-but-box">
<up-button @click="handleClick" :disabled="disabled" size="large" type="primary" :text="text" shape="circle"
color="#FFAA48"></up-button>
</view>
</view>
</template>
<script setup>
defineProps({
text: {
type: String,
default: "确定"
},
disabled: {
type: Boolean,
default: false
}
})
const emit = defineEmits(['click'])
const handleClick = () => {
emit('click')
}
</script>
<style scoped lang="scss">
@import "index";
</style>