Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active December 29, 2019 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/a26103f321472114921add2868e11a27 to your computer and use it in GitHub Desktop.
Save parzibyte/a26103f321472114921add2868e11a27 to your computer and use it in GitHub Desktop.
<template>
<div class="container">
<div class="columns">
<div class="column">
<section>
<h1 class="is-size-1">Probando Buefy</h1>
<button class="button is-medium" @click="mostrarToast">
Mostrar un toast
</button>
</section>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'app',
methods: {
mostrarToast(){
this.$buefy.toast.open("¡Hola, Buefy! Parzibyte.me")
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment