|
<template>
|
|
<tiny-button @click="btnClick" :reset-time="0">不允许重复点击</tiny-button>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Button as TinyButton, Modal } from '@opentiny/vue'
|
|
|
|
function btnClick() {
|
|
Modal.message({ status: 'info', message: '不允许重复点击', id: 'unique' })
|
|
}
|
|
</script>
|