未捕获的类型错误:Vue.component 不是函数

问题描述 投票:0回答:9

在使用 Laravel/Homestead 的 OS X 中,我使用 Vue (v2.2.1) 时遇到错误。 该组件将无法加载,控制台错误为“Uncaught TypeError: Vue.component is not a function”。

完全控制台错误

    Uncaught TypeError: Vue.component is not a function
        at eval (eval at <anonymous> (app.js:321), <anonymous>:17:5)
        at Object.<anonymous> (app.js:321)
        at __webpack_require__ (app.js:20)
        at app.js:64
        at app.js:67  

让我失望的是,如果我对 app.js 进行更改,webpack 不会更新以反映任何更改。 所以我需要 A) 解决上述问题,B) 弄清楚如何让 webpack 在控制台中显示更新。

任何帮助将不胜感激! 我是个菜鸟。 这是我的代码...

app.js 文件

    Vue.component('video-upload', require('./components/VideoUpload.vue'));

    const app = new Vue({
        el: 'body'
    });

VideoUpload.vue

    <template>
        <div class="container">
            <div class="row">
                <div class="col-md-8 col-md-offset-2">
                    <div class="panel panel-default">
                        <div class="panel-heading">Example</div>

                        <div class="panel-body">
                            This is an example
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </template>

    <script>
        export default {
            mounted() {
                console.log('Component mounted.')
            }
        }
    </script>

upload.blade.php

    @extends('layouts.app')

    @section('content')
        <video-upload></video-upload>
    @endsection

package.json

    {
      "private": true,
      "scripts": {
        "prod": "gulp --production",
        "dev": "gulp watch"
      },
        "devDependencies": {
        "bootstrap-sass": "^3.3.7",
        "gulp": "^3.9.1",
        "jquery": "^3.1.0",
        "laravel-elixir": "^6.0.0-9",
        "laravel-elixir-vue": "^0.1.4",
        "laravel-elixir-webpack-official": "^1.0.2",
        "lodash": "^4.14.0",
        "video.js": "^5.11.6",
        "vue": "^2.2.1",
        "vue-resource": "^0.9.3"
      }
    }
javascript laravel vuejs2 homestead console.log
9个回答
59
投票

在 laravel 7 项目上从

laravel-mix 5.0.9
更新到
laravel-mix 6.0.11
后,它开始在 vue 编译视图上看到此错误。我更改了Vue包的调用:

使用

import Vue from 'vue'
而不是
window.Vue = require("vue");
对我有用。


18
投票

使用 import 关键字在代码中正确导入 vue,如下所示:

//import vue
import Vue from 'vue';

//register component
Vue.component('yourComponentName',require('./components/yourComponentName.vue').default);

//initialize vue
const app = new Vue({
    el: '#app',
});

17
投票

对于任何有同样问题且与 Laravel 无关的人。

提示:使用Vue 3+

全局注册组件:

const MyComponent = {
  // ... options ...
}

// if you do not have App component
Vue.createApp({}).component("my-component", MyComponent).mount("#app");

// if you have an App component
const App = {
  // ... options ...
}
const app = Vue.createApp(App);
app.component("my-component", MyComponent);
app.mount("#app");

请参阅文档了解更多信息


4
投票

1

更改您的 package.json

"laravel-elixir-vue-2": "^0.3.0"

然后跑

<!-- language: lang-js -->
npm install

2

npm install laravel-elixir-vue-2 --save-dev

然后

像这样更改你的 gulpfile.js

<!-- language: lang-js -->
var elixir = require('laravel-elixir')

require('laravel-elixir-vue-2');

4
投票

检查您的 CDN VUE 版本。他们从 VUE 2 更改为 VUE 3。

这种情况发生在这里,我们使用的是 Vue 2,我们的 CDN 将全局脚本更改为 Vue 3。

Vue 3 将“Vue.component”更改为“Vue.directive”,这破坏了我们的应用程序。


4
投票

VUE.JS CDN 将全局脚本更改为 Vue 3,不再支持 [Vue.component]。

使用 Vue 版本 2.6.14,这对我有用(旧应用程序) https://v2.vuejs.org/v2/


3
投票
window.Vue = require('vue').default;
const app = new Vue({
    el: '#app',
});


<body>
 <div id="app">.....</div>`
</body>

0
投票

只需添加这个

/*import Vue from 'vue/dist/vue'*/ before
/*require('./bootstrap');*/
  
require('./bootstrap');

import Vue from 'vue/dist/vue'
window.Vue = require('vue');

Vue.component('mainapp', require('./component/mainapp.vue').default);


const app = new Vue({
  el:"#app",
});

0
投票

就我而言,使用 Vue 3.x: 通过更改解决了问题:

import { createApp } from "vue"
import Test from "./Test.vue"

const app = createApp({}).mount("#app")
app.component('Test', Test)

对此:

//...imports

const app = createApp({})
app.component('Test', Test)
app.mount("#app") // fixed by this change!
© www.soinside.com 2019 - 2024. All rights reserved.