index.vue 422 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="font-title">
  3. {{ title }}
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. props: {
  12. title: {
  13. type: String,
  14. default: "",
  15. },
  16. },
  17. methods: {},
  18. };
  19. </script>
  20. <style lang="scss" scoped>
  21. .font-title {
  22. font-size: 16px;
  23. font-weight: 700;
  24. letter-spacing: 0px;
  25. line-height: 23.17px;
  26. color: rgba(0, 0, 0, 1);
  27. }
  28. </style>