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