update 房屋编码管理
This commit is contained in:
26
Web/src/components/yoFormLink/index.js
Normal file
26
Web/src/components/yoFormLink/index.js
Normal file
@@ -0,0 +1,26 @@
|
||||
export default {
|
||||
props: {
|
||||
title: {
|
||||
type: [String, Number],
|
||||
default: ''
|
||||
},
|
||||
content: {
|
||||
type: [String, Number],
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div class="yo-form-link">
|
||||
<div class="yo-form-link--title">
|
||||
{this.$scopedSlots.default ? this.$scopedSlots.default() : this.title}
|
||||
</div>
|
||||
<div class="yo-form-link--content">
|
||||
{this.$scopedSlots.content ? this.$scopedSlots.content() : this.content}
|
||||
</div>
|
||||
<a-icon type="right" class="yo-form-link--right-icon" />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user