27 lines
360 B
Vue
27 lines
360 B
Vue
<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>
|