mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
811 B
811 B
layout |
---|
templateLayout |
<template>
<Wb-button @click="click5">可配置的Message</Wb-button>
</template>
<script>
export default {
methods: {
click5 () {
this.$Message({
title: '标题', //可以传入文本和domString
template: '我是模版', //可以传入文本和domString
buttons: [{ //最多有两个, 第一条配置第一个button
text: '确定',
class: "xx"
},{ //配置第二个button
text: "放弃",
class: "yy"
}]
}).then(function (index) {
console.log(index)
})
}
}
}
</script>