首页 > 其他 > 详细

babel-plugin-component

时间:2020-09-30 20:07:03      阅读:69      评论:0      收藏:0      [点我收藏+]

整体引入:

Converts

  import Button from ‘components

to

  var button require(‘components/lib/button)
  require(‘components/lib/button/style.css)
 
按需引入:

Converts

  import Components from ‘components
  import Button from ‘components

to

  require(‘components/lib/styleLibraryName/index.css)
  var button require(‘components/lib/styleLibraryName/button.css)
 
1.installation
 
 npm i babel-plugin-component -D
 
2.usage: 
  在 .babelrc 中配置它:
{
  "plugins": ["other-plugin", ["component", [
    { "libraryName": "mint-ui", "style": true }
  ]]]
}

 

 

babel-plugin-component

原文:https://www.cnblogs.com/noraZhang/p/13755951.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!