H5端齐采药项目,uniapp框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
355 B

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