1<template>
2 <section>
3 <b-button @click="clickMe">Click Me</b-button>
4 </section>
5</template>
6
7<script>
8 export default {
9 methods: {
10 clickMe() {
11 this.$buefy.notification.open('Clicked!!')
12 }
13 }
14 }
15</script>