Files
ZangShiQi/addon/diy_default1/uniapp/components/diy-components/diy-text-extend.vue
2026-04-04 17:27:12 +08:00

27 lines
386 B
Vue
Executable File

<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>