关于This dependency was not found: * common/stylus/index.styl in ./src/main.js 的解决方法
运行
## npm install stylus-loader stylus --save-dev
在build\webpack.base.conf.js的 resolve中添加
## resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
'common': resolve('src/common')
}
},