| 1234567891011121314151617181920212223242526 |
- <template>
- <view>
- <text style="font-weight: bold;font-size: 20px;color: #0cc361;">我是扩展标题组件</text>
- </view>
- </template>
- <script>
- // 扩展标题组件
- export default {
- name: 'diy-text-extend',
- props: {
- value: {
- type: Object
- }
- },
- data() {
- return {};
- },
- computed: {},
- created() {
- },
- methods: {}
- };
- </script>
- <style></style>
|