update 房屋编码管理

This commit is contained in:
2021-05-11 19:59:59 +08:00
parent 452c0291aa
commit 9ec4f127f1
6 changed files with 252 additions and 2 deletions

View 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>
)
}
}