mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-24 16:01:25 +08:00
16 lines
354 B
Markdown
16 lines
354 B
Markdown
```html
|
|
<template>
|
|
<Wb-button @click="click5">显示普通的提示</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
click5: function () {
|
|
this.$Toast("正在加载中", 10000, function () {
|
|
console.log("关闭了")
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
``` |