web-dev-qa-db-ja.com

Laravel 5.4 Vue.JSはコンポーネントのマウントに失敗しました:テンプレートまたはレンダリング関数が定義されていません

Vue.jsから始めて、laravelに付属するサンプルを試してみたいと思いました。

コンポーネントが表示されず、コンソールに表示されます

[Vue warn]: Failed to mount component: template or render function not defined.

found in

---> <Example>
   <Root>

5.2-> 5.3-> 5.4からアップグレードされた、新規インストールではない

resources/assets/js/app.js

/**
 * First we will load all of this project's JavaScript dependencies which
 * includes Vue and other libraries. It is a great starting point when
 * building robust, powerful web applications using Vue and Laravel.
 */

require('./bootstrap');

window.Vue = require('vue');

/**
 * Next, we will create a fresh Vue application instance and attach it to
 * the page. Then, you may begin adding components to this application
 * or customize the JavaScript scaffolding to fit your unique needs.
 */
Vue.component('example', require('./components/Example.vue'));

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

resources/assets/js/components/Example.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 Component</div>

                <div class="panel-body">
                    I'm an example component!
                </div>
            </div>
        </div>
    </div>
</div>
</template>

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

これは私がjsを持っているブレードです

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Testing</title>
    <link rel="stylesheet" href="css/app.css">
    <meta name="csrf-token" content="{{ csrf_token() }}">
</head>
    <body>
    <div id="app">
        <example></example>
    </div>
        <script src="js/app.js" charset="utf-8"></script>
    </body>
</html>

webpack.mix.js

let mix = require('laravel-mix');

mix.js('resources/assets/js/app.js', 'public/js')
    .sass('resources/assets/sass/app.scss', 'public/css');
14
Carlos F

Vueのマウント方法に関係しています。コンパイラが必要な場合とそうでない場合 https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only .

あなたは私の方法を試すことができます(それは純粋ですvueプロジェクト、vue webpackテンプレートから作られた):

import Vue from 'vue'
import App from './App'
import Example from './components/Example'
import router from './router' //this will import router/index.js

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  template: '<App/>',
  components: { App, Example }
})

これにより、コンポーネントがグローバルオブジェクトにマウントされます。

6
cssBlaster21895

require('./components/Example.vue').defaultである必要があります。 v13以降、vue-loaderは、コンポーネントをデフォルトキーとしてエクスポートします。これは、importを使用する場合でも同じように機能しますが、requireを使用する場合は上記が必要です。

36

今のところ、私が持っている石膏は、すべてのVueオブジェクトのコンポーネントに 'default()'を追加することです。

Vue.component('form-component', require('./components/FormComponent').default);
Vue.component('gratitude-pop', require('./components/GratitudePop').default);//..etc..etc

このパッケージの実行:

  "devDependencies": {
        "axios": "^0.18",
        "bootstrap": "^4.0.0",
        "cross-env": "^5.1",
        "jquery": "^3.2",
        "laravel-mix": "^4.0.7",
        "lodash": "^4.17.5",
        "popper.js": "^1.12",
        "resolve-url-loader": "^2.3.1",
        "sass": "^1.15.2",
        "sass-loader": "^7.1.0",
        "vue": "^2.5.17"
    },
    "dependencies": {
        "vuex": "^3.0.1"
    }

VUEXを使用するための親指を立てる; P

9
clusterBuddy

これを試して

Vue.component('example-component', require('./components/ExampleComponent.vue').default);
9
Golam Sorwar

次の行のrequire().defaultの最後に。defaultメソッドを使用すると、この問題を簡単に解決できました。

Vue.component('example-component', require('./components/ExampleComponent.vue').default);
Vue.component('articles', require('./components/ArticleComponent.vue').default);

app.js

/**
 * First we will load all of this project's JavaScript dependencies which
 * includes Vue and other libraries. It is a great starting point when
 * building robust, powerful web applications using Vue and Laravel.
 */

require('./bootstrap');

window.Vue = require('vue');

/**
 * Next, we will create a fresh Vue application instance and attach it to
 * the page. Then, you may begin adding components to this application
 * or customize the JavaScript scaffolding to fit your unique needs.
 */

Vue.component('example-component', require('./components/ExampleComponent.vue'));
Vue.component('articles', require('./components/ArticleComponent.vue').default);

const app = new Vue({
    el: '#app', 
});
6
Mayank Dudakiya
  • node_modulesフォルダーを削除します
  • npm installを実行します
  • package.jsonに次の行を追加します

    "webpack": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
    
  • npm run webpack

  • npm run watch

  • 何も変えないで

0
khalil kasmi