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