Skip to content

Instantly share code, notes, and snippets.

@LucasBadico
Last active October 1, 2019 17:16
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 LucasBadico/28968fe0b9511209b7d46a9595242bfd to your computer and use it in GitHub Desktop.
Save LucasBadico/28968fe0b9511209b7d46a9595242bfd to your computer and use it in GitHub Desktop.
vue component
<script>
export default {
name: "backoffice-header",
props: { title: { type: String, required: true }, subtitle: { type: String, required: false, default: '' } }
}
</script>
<template>
<h1> {{title}}</h1>
<p class="subtitle"> {{subtitle}}</p>
<slot></slot>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment