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,12 +20,12 @@
"vue": "^3.2.37"
},
"devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-beta.49",
"@vuepress/cli": "^2.0.0-beta.49",
"@vuepress/client": "^2.0.0-beta.49",
"@vuepress/plugin-search": "^2.0.0-beta.49",
"@vuepress/theme-default": "^2.0.0-beta.49",
"vite": "~2.9.14",
"vuepress": "^2.0.0-beta.49"
"@vuepress/bundler-vite": "^2.0.0-beta.51",
"@vuepress/cli": "^2.0.0-beta.51",
"@vuepress/client": "^2.0.0-beta.51",
"@vuepress/plugin-search": "^2.0.0-beta.51",
"@vuepress/theme-default": "^2.0.0-beta.51",
"vite": "~3.1.3",
"vuepress": "^2.0.0-beta.51"
}
}

View File

@ -1,7 +1,7 @@
import { viteBundler } from '@vuepress/bundler-vite';
import { defineUserConfig } from '@vuepress/cli';
import { defaultTheme } from '@vuepress/theme-default';
const { searchPlugin } = require('@vuepress/plugin-search');
import { searchPlugin } from '@vuepress/plugin-search'
import path from 'path';

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',

View File

@ -43,6 +43,6 @@
"@types/node": "^15.12.4",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.4"
"vite": "^3.1.3"
}
}

View File

@ -29,6 +29,6 @@
"@types/node": "^15.12.4",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.4"
"vite": "^3.1.3"
}
}

View File

@ -45,6 +45,6 @@
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"typescript": "^4.7.4",
"vite": "^3.0.4"
"vite": "^3.1.3"
}
}

View File

@ -31,6 +31,6 @@
"@types/node": "^15.12.4",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.4"
"vite": "^3.1.3"
}
}

735
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff