mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 20:29:01 +08:00
19 lines
302 B
Markdown
19 lines
302 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Wb-button @click="click6">在头部提示</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
click6 () {
|
|
this.$Toast('提示在头部', {
|
|
align: 'top'
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
``` |