mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-25 11:06:36 +08:00
25 lines
548 B
Markdown
25 lines
548 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Wb-button @click="click1">显示内容</Wb-button>
|
|
<Wb-button @click="click2">显示标题和内容</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
click1 () {
|
|
this.$Message("我是提示").then(function (index) {
|
|
console.log(index)
|
|
})
|
|
},
|
|
click2 () {
|
|
this.$Message("标题", "我是提示").then(function (index) {
|
|
console.log(index)
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
``` |