
antd(vue篇)
文章平均质量分 51
antd在vue中的应用
失忆症患者_
从事前端开发工作,技术栈vue、uniapp、微信原生,希望和大家一起交流进步
展开
-
[Antd-vue] Warning: You cannot set a form field before rendering a field associated with the value.
[Antd-vue] Warning: You cannot set a form field before rendering a field associated with the value.在用ant-design-vue的框架中,使用到了这种场景,就是点击编辑按钮,弹出modal模态框,渲染modal模态框中的form表单页面,并给表单赋值,但是在给表单赋值的时候,总是会报错。错误提示: Warning: You cannot set a form field before rendering转载 2021-09-08 11:45:18 · 1103 阅读 · 0 评论 -
Antd改变Modal弹窗header颜色并且随主题颜色在线改变
1.改变Modal弹窗颜色在Antd中,Modal弹窗默认颜色为白色,我们为Modal外层添加一层div,即可如下修改弹窗头部属性:<style lang="less" scoped> /deep/ .ant-modal-header{ background-color: #40a9ff; } /deep/ .ant-modal-title{ color: white; }</style>2.颜色随主题改变我们有时候需要颜色随着主题的改原创 2021-09-08 15:06:39 · 5679 阅读 · 1 评论