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