热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

elementui部分模块定制,属性覆盖设置方法

本文介绍了如何按需加载elementui的部分模块,以及如何设置覆盖某些属性。通过import引入Dialog模块,并使用Vue.component进行全局设置。同时使用Vue.use引入ElementUI和VueAxios模块。通过extends进行属性覆盖设置。

按需加载,可以设置变成全局,设置覆盖某些属性

import { Dialog } from 'element-ui';
Vue.component('countTo', countTo)
Vue.use(ElementUI)
Vue.use(VueAxios)
Vue.component(Dialog.name, {props: {closeOnClickModal: {type: Boolean,default: false},closeOnPressEscape: {type: Boolean,default: false},},extends: Dialog
})

推荐阅读
author-avatar
一加一等于贰_661
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有