mirror of https://github.com/halo-dev/halo-admin
Support placeholder property for theme setting item.
parent
8a7ad7571b
commit
22af605598
|
@ -165,12 +165,14 @@
|
|||
<a-input
|
||||
v-model="themeSettings[item.name]"
|
||||
:defaultValue="item.defaultValue"
|
||||
:placeholder="item.placeholder"
|
||||
v-if="item.type == 'TEXT'"
|
||||
/>
|
||||
<a-input
|
||||
type="textarea"
|
||||
:autosize="{ minRows: 5 }"
|
||||
v-model="themeSettings[item.name]"
|
||||
:placeholder="item.placeholder"
|
||||
v-else-if="item.type == 'TEXTAREA'"
|
||||
/>
|
||||
<a-radio-group
|
||||
|
|
Loading…
Reference in New Issue