PageHeader.vue 749 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <section class="inner-banner">
  3. <span class="banner-two__shape-1"></span>
  4. <span class="banner-two__shape-2"></span>
  5. <span class="banner-two__shape-3"></span>
  6. <span class="banner-two__shape-4"></span>
  7. <div class="container">
  8. <ul class="list-unstyled thm-breadcrumb">
  9. <li><a href="/">Home</a></li>
  10. <li class="active"><a href="#">{{ title}}</a></li>
  11. </ul><!-- /.list-unstyled -->
  12. <h2 class="inner-banner__title">{{ title}}</h2><!-- /.inner-banner__title -->
  13. </div><!-- /.container -->
  14. </section>
  15. </template>
  16. <script>
  17. export default {
  18. name: "PageHeader",
  19. props: {
  20. title: {
  21. type: String
  22. }
  23. }
  24. }
  25. </script>
  26. <style scoped>
  27. </style>