Skip to content

fe6/water-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

water-loader

统一的 Water 标签编写规范

@fe6/water-loader code style: prettier

预览

可进入 ./demo/ 文件夹,安装以来之后,执行 npm start ,进行查看。

Button 转译成 w-button

不需要加参数,效果如下

  1. 转译前:

Button

  1. 转移后:

w-button

w-button 转译成 Button

需要在 ./demo/webpack.config.js 中加 prefix: true ,效果如下

  1. 转译前:

Button

  1. 转移后:

w-button

使用

// 配置 webpack.config.js
module.exports = {
  // ... 省略其他配置
  module: {
    rules: [
      {
        test: /\.vue$/,
        use: [
          // ... 省略其他配置
          {
            loader: '@fe6/water-loader',
            options: {
              prefix: true, // `w-button` 转译成 `Button`
            },
          },
        ],
      },
    ],
  },
};

说明

引用了 water-helper-maps 中的标签对照。完整标签请移步 water-helper-maps

About

统一的 Water 标签编写规范

Resources

License

Stars

Watchers

Forks

Packages

No packages published