| 12345678910111213141516171819202122 |
- <template>
- <div class="m-title">
- <h3 v-text="headTitle"></h3>
- </div>
- </template>
- <script>
- export default {
- name: 'head-title',
- props: ['headTitle']
- }
- </script>
- <style scoped type="text/scss" lang="scss">
- .m-title{
- h3{
- font-size: 20px;
- color:#000;
- margin-bottom:20px;
- }
- }
- </style>
|