vue 弹出消息框
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
为了体现更好的交互性,免不了会用到消息弹出功能,于是antd vue提供了很多可以使用的消息控件,比如Modal,message,Popover这些控件。下面就我用过的进行总结。
1. Modal.method() 方法:
Modal.warning({
title: '提示',
content: '未完成录入,无法进入下一步。',
okText: '确定',
centered: true,
});
首先引入:import { Modal } from 'ant-design-vue';
title: 标题 ;content:要提示的内容消息;okText:按钮;centered:居中,默认false.
另外,method包括:info(),success(),error(),warning(),confirm()
2. message静态方法
message.info({
content: item.paramSelectRemarks,
style: {
position: 'absolute',
top: parseInt(e.target.getBoundingClientRect().top - 60) + 'px',
left: parseInt(e.target.getBoundingClientRect().left - 20) + 'px',
},
});
引入:import { message } from 'ant-design-vue';
content:内容;
style: 弹出消息的样式,比如居中,比如如上例,显示在控件的正上方且左对齐。
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)