element-theme-nio
v0.2.2
Published
Element component nio theme.
Downloads
11
Readme
element-theme-nio
基于element-ui
的个性主题。
Github
示例
Installation
npm i element-theme-nio
Usage
Use Sass import
@import 'element-theme-nio';
Or Use webpack
import 'element-theme-nio';
构建时按需引入主题需要在babel.config.js
设置styleLibraryName
module.exports = {
presets: ["@vue/app"],
plugins: [
[
"component",
{
libraryName: "element-ui",
styleLibraryName: "~node_modules/element-theme-nio/lib"
}
]
]
};
Or
<link rel="stylesheet" href="path/to/node_modules/element-theme-nio/lib/index.css">
Import on demand
import 'element-theme-nio/lib/input.css';
import 'element-theme-nio/lib/select.css';
// ...