1
0
mirror of synced 2026-04-18 00:35:02 +08:00

build: vite依赖升级

This commit is contained in:
roymondchen
2022-09-20 13:17:52 +08:00
committed by jia000
parent 6d6490ab31
commit 6d91cacc84
9 changed files with 423 additions and 345 deletions

View File

@@ -20,6 +20,7 @@
<demo-block type="form" :config="[{
type: 'row',
labelWidth: 100,
span: 8,
items: [{
name: 'text',
text: '配置1',

View File

@@ -17,12 +17,16 @@
<demo-block type="form" :config="[{
name: 'firstName',
text: '名',
onChange: (state, v, { model }) => model.fullName = `${model.lastName}${model.firstName}`,
onChange: (state, v, { model }) => {
model.fullName = `${model.lastName}${model.firstName}`
},
defaultValue: '三'
}, {
name: 'lastName',
text: '姓',
onChange: (state, v, { model }) => model.fullName = `${model.lastName}${model.firstName}`,
onChange: (state, v, { model }) => {
model.fullName = `${model.lastName}${model.firstName}`
},
defaultValue: '张'
}, {
name: 'fullName',