mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-29 05:38:57 +08:00
17 lines
412 B
Markdown
17 lines
412 B
Markdown
```html
|
|
<template>
|
|
<Wb-button @click="click1">只显示内容</Wb-button>
|
|
<Wb-button @click="click4">显示标题和内容</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
click1: function () {
|
|
this.$Message("我是提示").then(function (index) {
|
|
console.log(index)
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
``` |