mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
375 B
375 B
layout |
---|
templateLayout |
<template>
<Wb-button @click="click7">提示关闭回调</Wb-button>
</template>
<script>
export default {
methods: {
click7 () {
this.$Toast('正在加载中', {
onClose: ()=>{
this.$Toast("我关闭了!")
}
})
}
}
}
</script>