forked from opentiny/tiny-vue
24 lines
391 B
Vue
24 lines
391 B
Vue
<template>
|
|
<div>
|
|
<tiny-button>默认禁用</tiny-button>
|
|
<tiny-button :reset-time="0"> 无禁用 </tiny-button>
|
|
<tiny-button :reset-time="5000"> 禁用 5 秒 </tiny-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButton: Button
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
button {
|
|
margin: 0 16px 16px 0;
|
|
}
|
|
</style>
|