mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 12:08:49 +08:00
412 B
412 B
<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>