【问题标题】:This dependency was not found: components/main/Footer in ./node_modules..../src/App.vue未找到此依赖项:./node_modules..../src/App.vue 中的 components/main/Footer
【发布时间】:2019-02-24 04:32:03
【问题描述】:

我的错误:

./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/App.vue 中的组件/main/Footer

我的组件树在下面的屏幕截图中:

我的 App.vue

<script>

import Footer from 'components/main/Footer';

export default {
  components: {Footer},
  name: 'app',
  data () {
    return {
      msg: 'Welcome to your Vue.js powered Spring Boot App'
    }
  }
}
</script>

我的路由器:

import App from './../App'

Vue.use(Router);

export default new Router({
  routes: [
    {
      path: '/main',
      name: 'App',
      component: App
    },

我的配置:

'use strict'
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.

const path = require('path')

module.exports = {
  dev: {

    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
      // proxy all webpack dev-server requests starting with /api to our Spring Boot backend (localhost:8088)
      '/api': {
        target: 'http://localhost:8088',
        changeOrigin: true
      }
    },

    // Various Dev Server settings
    host: 'localhost', // can be overwritten by process.env.HOST
    port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
    autoOpenBrowser: true,
    errorOverlay: true,
    notifyOnErrors: true,
    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-

    /**
     * Source Maps
     */

    // https://webpack.js.org/configuration/devtool/#development
    devtool: 'cheap-module-eval-source-map',

    // If you have problems debugging vue-files in devtools,
    // set this to false - it *may* help
    // https://vue-loader.vuejs.org/en/options.html#cachebusting
    cacheBusting: true,

    cssSourceMap: true
  },

  build: {
    // Template for index.html
    index: path.resolve(__dirname, '../target/dist/index.html'),

    // Paths
    assetsRoot: path.resolve(__dirname, '../target/dist'),
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',

    /**
     * Source Maps
     */

    productionSourceMap: true,
    // https://webpack.js.org/configuration/devtool/#production
    devtool: '#source-map',

    // Gzip off by default as many popular static hosts such as
    // Surge or Netlify already gzip all static assets for you.
    // Before setting to `true`, make sure to:
    // npm install --save-dev compression-webpack-plugin
    productionGzip: false,
    productionGzipExtensions: ['js', 'css'],

    // Run the build command with an extra argument to
    // View the bundle analyzer report after build finishes:
    // `npm run build --report`
    // Set to `true` or `false` to always turn it on or off
    bundleAnalyzerReport: process.env.npm_config_report

  }
}

有什么想法吗?

【问题讨论】:

    标签: javascript vue.js vuejs2 vue-component vue-router


    【解决方案1】:

    首先,请删除导入语句周围的引号。不知道为什么会有这些:) 其次,尝试在Footer导入中添加“.vue”

    import Footer from './components/main/Footer.vue'
    

    【讨论】:

    • 试试'./ccomponents/main/Footer.vue'
    • 可能在配置中?
    • 也许,你能发布你的 webpack 配置吗?还有,Footer.vue 的内容?
    • @MoreAl' 你确定你在这个答案中使用的代码与它看起来完全一样吗?重要的部分是路径开头的./
    • 仅供参考,vue-loader 不需要您添加 .vue 后缀,但它也没有伤害 :)
    【解决方案2】:

    我也遇到了同样的错误。这可以通过简单地运行命令来更新 npm by 来解决

    npm i -g npm
    

    然后通过提供组件的正确路径,但还要在组件名称之前添加@/

    import UserDetail from '@/components/user-detail';
    

    这样就可以解决问题了。

    【讨论】:

      【解决方案3】:

      通过更正组件路径解决的问题:

      import Footer from './components/main/Footer.vue'
      

      【讨论】:

      • 这就是另一个答案所说的。您应该accept that answer 而不是添加重复项
      猜你喜欢
      • 2021-01-21
      • 2019-02-24
      • 2021-06-16
      • 2019-02-14
      • 1970-01-01
      • 2018-11-19
      • 2021-03-07
      • 1970-01-01
      • 2021-11-24
      相关资源
      最近更新 更多