mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 14:32:46 +08:00
19 lines
300 B
Markdown
19 lines
300 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Wb-button @click="click5">10s显示</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
click5 () {
|
|
this.$Toast('10s后才关闭', {
|
|
duration: 10000,
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
``` |