Guest User

Untitled

a guest
Feb 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <template>
  2. <div>
  3. <b-message :title="title" :closable="false">
  4. <b-tag type="is-warning" v-show="message">{{message}}</b-tag>
  5.  
  6. <hr/>
  7. <button class="button is-primary is-pulled-right" @click="$emit('save')" >Save</button>
  8. <button class="button is-secondary " @click="onClearClick" >Clear</button>
  9. </b-message>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: 'FormBox',
  15. props: ['title', 'message'],
  16. data () {
  17. return {
  18.  
  19. }
  20. },
  21. methods: {
  22. onClearClick: function () {
  23. this.$emit('clear')
  24. }
  25. }
  26. }
  27. </script>
Add Comment
Please, Sign In to add comment