chore: bump deps

This commit is contained in:
vben
2020-11-01 23:44:23 +08:00
parent 87fcd0d21e
commit da863d3df2
5 changed files with 10 additions and 11 deletions

View File

@@ -8,9 +8,6 @@ import 'ant-design-vue/dist/antd.less';
import './spin';
export function setupAntd(app: App<Element>) {
// 这两个组件在登录也就用。全局注册
app.use(Form);
app.use(Input);
app.use(Row);
app.use(Col);
// Here are the components required before registering and logging in
app.use(Form).use(Input).use(Row).use(Col);
}

View File

@@ -1,6 +1,6 @@
<template>
<BasicDrawer v-bind="$attrs" @register="register" title="Drawer Title" width="50%">
<div :style="{ background: '#fff' }">
<div>
<p class="h-20">外部传递数据: {{ receiveDrawerDataRef }}</p>
<BasicForm @register="registerForm" />
</div>