12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="font-title">
- {{ title }}
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {};
- },
- props: {
- title: {
- type: String,
- default: "",
- },
- },
- methods: {},
- };
- </script>
-
- <style lang="scss" scoped>
- .font-title {
- font-size: 16px;
- font-weight: 700;
- letter-spacing: 0px;
- line-height: 23.17px;
- color: rgba(0, 0, 0, 1);
- }
- </style>
-
|