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