把官网更新下
Opened this issue · 4 comments
SmiteWindows commented
把介绍补齐,没有的补上
transtone commented
css很久不更新了,而且在ie11下都打不开。
dingyiming commented
请教怎么用?
SmiteWindows commented
我是这么做的,我是新手,作者不要喷我。把 components 目录 和 style 目录还有 utils目录 复制到自己项目 里,webpack简单配置下, 把一些 代码lint 过不去的地方改下,在vue 文件里像这样引用 import './style/index.less'
import message from './components/message'
SmiteWindows commented
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
}
]
},
postcss: [autoprefixer],
我的webpack 配置文件部分