Commit da863d3df2ce3d96f72ba94237bb5cc3ae8c9a25
1 parent
87fcd0d2
chore: bump deps
Showing
5 changed files
with
10 additions
and
11 deletions
CHANGELOG.zh_CN.md
package.json
src/setup/ant-design-vue/index.ts
... | ... | @@ -8,9 +8,6 @@ import 'ant-design-vue/dist/antd.less'; |
8 | 8 | import './spin'; |
9 | 9 | |
10 | 10 | export function setupAntd(app: App<Element>) { |
11 | - // 这两个组件在登录也就用。全局注册 | |
12 | - app.use(Form); | |
13 | - app.use(Input); | |
14 | - app.use(Row); | |
15 | - app.use(Col); | |
11 | + // Here are the components required before registering and logging in | |
12 | + app.use(Form).use(Input).use(Row).use(Col); | |
16 | 13 | } | ... | ... |
src/views/demo/comp/drawer/Drawer4.vue
yarn.lock
... | ... | @@ -1830,10 +1830,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: |
1830 | 1830 | dependencies: |
1831 | 1831 | color-convert "^2.0.1" |
1832 | 1832 | |
1833 | -ant-design-vue@^2.0.0-beta.11: | |
1834 | - version "2.0.0-beta.11" | |
1835 | - resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.0.0-beta.11.tgz#00c9c7c3f2452cba6853380b8d36dea3ed160771" | |
1836 | - integrity sha512-6jWT4w/AklYTH80tmG6EHhh7yPbaMFSXUHF14UZdQE+Cm7i5nJVJmRc5RkpmS8QiS3pmXU2UpR0zIo7VmwOmnA== | |
1833 | +ant-design-vue@^2.0.0-beta.12: | |
1834 | + version "2.0.0-beta.12" | |
1835 | + resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.0.0-beta.12.tgz#6a14f89f0024ebf10ccca7879464c2178345a3e5" | |
1836 | + integrity sha512-XSVfXini3ltUnCFR2jDRyko3WHB6Z2jtqHn3oFS08L306DLgLtfPYcdmO9P700LHnISs8v6NLPKGRhXgkxiKdQ== | |
1837 | 1837 | dependencies: |
1838 | 1838 | "@ant-design-vue/use" "^0.0.1-0" |
1839 | 1839 | "@ant-design/icons-vue" "^5.1.5" | ... | ... |