关于vue.js:Vue-插件引用-elementui-sass

38次阅读

共计 681 个字符,预计需要花费 2 分钟才能阅读完成。

element-ui

装置: npm i element-ui -S

/* main.js */
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);

sass

  1. 装置指定版本: npm install sass-loader –save-dev
  2. 装置 node-sass(指定版本): npm i -D node-sass@4.12.0

sass-loade 卸载: npm uninstall sass-loade

如果报错:
gyp verb check python checking for Python executable “python2” in the PATH
gyp verb check python checking for Python executable “python” in the PATH

次要是 windows 平台短少编译环境

  1. 先运行:npm install -g node-gyp
  2. 而后运行:运行 npm install –global –production windows-build-tools 能够主动装置跨平台的编译器:gym
    还是报错 就看看版本是不是对应的上

装置指定版本
npm i -D node-sass@4.12.0
npm i -D sass-loader@7.1.0

装置后应用要在 build/webpack.base.conf.jsde 里的在 module 的 rules 中插入以下代码增加配置:

{
test: /\.scss$/,
loaders: ["style", "css", "sass"]
},

最初从新运行

正文完
 0