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.
30 lines
436 B
30 lines
436 B
<template>
|
|
<view>
|
|
<!-- 扩展组件 -->
|
|
|
|
<!-- 扩展标题 -->
|
|
<template v-if="value.componentName == 'TextExtend'">
|
|
<diy-text-extend :value="value"></diy-text-extend>
|
|
</template>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// 自定义扩展组件
|
|
export default {
|
|
name: 'diy-comp-extend',
|
|
props: {
|
|
value: {
|
|
type: Object
|
|
}
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {},
|
|
created() {},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|
|
|