当前位置: 首页 > 知识库问答 >
问题:

Vue网页包生成-失败。您可能需要适当的加载程序来处理此文件类型

农飞尘
2023-03-14

如果有一种风格,我似乎无法用单个文件组件构建我的Vue项目。vue文件。

它在没有样式标签的情况下成功构建。但是当我添加样式时,给我一个错误。

ERROR in ./src/Martins.vue?vue&type=style&index=0&lang=css& (./node_modules/vue-loader/lib??vue-loader-options!./src/Martins.vue?vue&type=style&index=0&lang=css&) 9:0

Module parse failed: Unexpected token (9:0)
You may need an appropriate loader to handle this file type.

> .martins {
|     border: 1px solid black;
|     border-radius: 5px;
 @ ./src/Martins.vue?vue&type=style&index=0&lang=css& 1:0-127 1:143-146 1:148-272 1:148-272
 @ ./src/Martins.vue

这是我的webpack配置

const VueLoaderPlugin = require('vue-loader/lib/plugin');

const config = {
  ...
  module: {
    rules: [
      {
        test: /\.vue$/,
        loader: 'vue-loader'
      },
      {
        test: /\.js$/,
        use: 'babel-loader',
        exclude: /node_modules/
      },
      {
        test: /\.css$/,  
        include: /node_modules/,  
        loaders: ['style-loader', 'css-loader'],
      }
    ]
  },
  resolve: {
    extensions: [
      '.js',
      '.vue'
    ]
  },
  plugins: [
    new VueLoaderPlugin()
  ]
}

module.exports = config;

这是我的webpack配置

  "dependencies": {
    "css-loader": "^2.1.1",
    "style-loader": "^0.23.1",
    "vue": "^2.6.10"
  },
  "devDependencies": {
    "webpack": "^4.29.6",
    "webpack-cli": "^3.3.0",
    "vue-loader": "^15.7.0",
    "vue-template-compiler": "^2.6.10",
    "babel-loader": "^8.0.5",
    "@babel/core": "^7.4.0",
    "@babel/preset-env": "^7.4.2"
  }

这是它发生故障的部件

<template>
  <div>
    My name is <span class="martins">Martin</span>
  </div>
</template>

<style lang="css">
    .martins {
        border: 1px solid black;
        border-radius: 5px;
        padding: 4px;
        margin: 4px;
    }
</style>

共有1个答案

滑文昌
2023-03-14

看起来你需要一个不同风格的vue模板加载器。

取自他们的文件

注意:您可能需要安装依赖项vue样式加载器

在您的网页包配置文件中。

      {
        test: /\.css$/,
        use: [
          'vue-style-loader',
          'css-loader'
        ]
      }
 类似资料: