为了账号安全,请及时绑定邮箱和手机立即绑定

app.vue样式报错,是怎么回事呢?

<style scoped>

#app {

    position absolute

    left 0

    right 0

    top 0

    bottom 0

}


#cover {

    position absolute

    left 0

    right 0

    top 0

    bottom 0

    background-color #555

    opacity 0.5

    z-index: -1

}

</style>



ERROR in ./src/app.vue?vue&type=style&index=0&id=5ef48958&lang=stylus&scoped=true& (./node_modules/vue-loader/lib??vue-loader-options!./src/app.vue?vue&type=style&index=0&id=5ef48958&lang=stylus&scoped=true&) 16:0

Module parse failed: Unexpected character '#' (16:0)

You may need an appropriate loader to handle this file type.

> #app {

|     position absolute

|     left 0

 @ ./src/app.vue?vue&type=style&index=0&id=5ef48958&lang=stylus&scoped=true& 1:0-150 1:166-169 1:171-318 1:171-318

 @ ./src/app.vue

 @ ./src/index.js


正在回答

5 回答

我也遇到同样的问题,太感谢各位了。

0 回复 有任何疑惑可以回复我~

你是怎么弄的....我也遇到这个问题了

0 回复 有任何疑惑可以回复我~
{
  test: /\.styl(us)?$/,
  use: [
    'vue-style-loader',
    'css-loader',
    'stylus-loader'
  ]}
配置成这样,就可以了,在webpack.config.js里


0 回复 有任何疑惑可以回复我~
#1

耶路撒冷的钟声Inter 提问者

嗯嗯,搞定了,就这样,多谢!
2018-09-30 回复 有任何疑惑可以回复我~
#2

狂雨

正解,原因是vue里的 lang = "stylus", 但是webpack.config 里的正则是 /\.styl$/ 所以识别不了,其实也可以在vue 里 改lang = "styl" 我测试过也可以,不过就是vs code 不能识别stylus的语法了。。。
2018-10-17 回复 有任何疑惑可以回复我~
#3

慕标1909225

config.module.rules.push({ test: /\.styl/, use: [ 'style-loader', 'css-loader', { loader: 'postcss-loader', options: { sourceMap: true, } }, 'stylus-loader' ] })
2019-02-15 回复 有任何疑惑可以回复我~
#4

慕标1909225 回复 慕标1909225

为什么我的就是这样还是不行,郁闷
2019-02-15 回复 有任何疑惑可以回复我~
#5

慕标1909225 回复 耶路撒冷的钟声Inter 提问者

config.module.rules.push({ test: /\.styl/, use: [ 'style-loader', 'css-loader', { loader: 'postcss-loader', options: { sourceMap: true, } }, 'stylus-loader' ] }) 我的这样子没问题就是还不行
2019-02-15 回复 有任何疑惑可以回复我~
查看2条回复

VueLoaderPlugin

  看下是不是少了这个配置,或者你把webpack版本退到3也可以

0 回复 有任何疑惑可以回复我~
#1

耶路撒冷的钟声Inter 提问者

搞定了,没少VueLoaderPlugin,主要是stylus那个有问题
2018-09-30 回复 有任何疑惑可以回复我~

在webpack.config.js里面缺少配置

0 回复 有任何疑惑可以回复我~
#1

耶路撒冷的钟声Inter 提问者

嗯,配置有点问题
2018-09-30 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

app.vue样式报错,是怎么回事呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信