Skip to content

Commit

Permalink
fix: fix code bug
Browse files Browse the repository at this point in the history
  • Loading branch information
BoBoooooo committed Mar 2, 2021
1 parent 325a686 commit ce9a47a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component/form-designer/src/GenerateForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
:key="item.key"
v-show="!item.hidden">
<template slot="label">
<template v-if="!citem.options.hiddenLabel">
<span>{{citem.name}}</span>
<template v-if="!item.options.hiddenLabel">
<span>{{item.name}}</span>
</template>
</template>
<slot :name="item.model"
Expand Down

0 comments on commit ce9a47a

Please sign in to comment.