mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 06:22:48 +08:00
22 lines
611 B
Markdown
22 lines
611 B
Markdown
```html
|
|
<template>
|
|
<Wb-button @click="click2">alert模式</Wb-button>
|
|
<Wb-button @click="click3">confirm模式</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
click2: function () {
|
|
this.$Message.alert("标题", "我是提示").then(function (index) {
|
|
console.log(index)
|
|
})
|
|
},
|
|
click3: function () {
|
|
this.$Message.confirm("标题", "我是提示").then(function (index) {
|
|
console.log(index)
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
``` |