Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created February 13, 2018 14:22
Show Gist options
  • Save danielschmitz/34bf2604b442839f2860dcadb57f3665 to your computer and use it in GitHub Desktop.
Save danielschmitz/34bf2604b442839f2860dcadb57f3665 to your computer and use it in GitHub Desktop.
Adiciona a propriedade title
<template>
<div>
<b-message :title="title">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce id fermentum quam. Proin sagittis, nibh id hendrerit imperdiet,
elit sapien laoreet elit
</b-message>
</div>
</template>
<script>
export default {
name: 'FormBox',
props: ['title'],
data () {
return {
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment