ContainerTitle.vue 301 B

12345678910111213141516171819202122
  1. <template>
  2. <h2 class="container-title">{{ title }}</h2>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'ContainerTitle',
  7. props: {
  8. title: {
  9. type: String,
  10. required: true,
  11. },
  12. },
  13. }
  14. </script>
  15. <style lang="scss">
  16. .container-title {
  17. font-size: 18px;
  18. margin: 30px 0;
  19. }
  20. </style>