headTitle.vue 332 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="m-title">
  3. <h3 v-text="headTitle"></h3>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'head-title',
  9. props: ['headTitle']
  10. }
  11. </script>
  12. <style scoped type="text/scss" lang="scss">
  13. .m-title{
  14. h3{
  15. font-size: 20px;
  16. color:#000;
  17. margin-bottom:20px;
  18. }
  19. }
  20. </style>