mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-28 21:20:13 +08:00
268 B
268 B
layout |
---|
templateLayout |
<template>
<Wb-button @click="click">显示普通的提示</Wb-button>
</template>
<script>
export default {
methods: {
click () {
this.$Toast('我是一条提示消息')
}
}
}
</script>