Created
February 13, 2018 14:22
-
-
Save danielschmitz/34bf2604b442839f2860dcadb57f3665 to your computer and use it in GitHub Desktop.
Adiciona a propriedade title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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