Невозможно настроить и запустить vuejs в laravel

#javascript #php #laravel-5 #vue.js

#javascript #php #laravel-5 #vue.js

Вопрос:

Я совсем новичок в vue.js но знаком с laravel. Теперь, с выпуском laravel 5.3, я пытаюсь запустить какой-нибудь пример приложения, используя vue.

resources/js/app.js :

     /**
     * First we will load all of this project's JavaScript dependencies which
     * include Vue and Vue Resource. This gives a great starting point for
     * building robust, powerful web applications using Vue and Laravel.
     */

    require('./bootstrap');

    /**
     * Next, we will create a fresh Vue application instance and attach it to
     * the body of the page. From here, you may begin adding components to
     * the application, or feel free to tweak this setup for your needs.
     */



    new Vue({
          el: 'body',
          data: {
          message: 'Hello Vue World!'
          }
        })
  

welcome.blade.php

 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="{{ elixir('js/app.js') }}"></script>
<link rel="stylesheet" href="{{ elixir('css/app.css') }}">
<title>Laravel</title>

<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600"
    rel="stylesheet" type="text/css">


</head>
<body>
    <div id="app">@{{ message }}</div>
</body>
</html>
  

gulpfile.js

 const elixir = require('laravel-elixir');

require('laravel-elixir-vue');

/*
 |--------------------------------------------------------------------------
 | Elixir Asset Management
 |--------------------------------------------------------------------------
 |
 | Elixir provides a clean, fluent API for defining some basic Gulp tasks
 | for your Laravel application. By default, we are compiling the Sass
 | file for our application, as well as publishing vendor resources.
 |
 */

elixir(function(mix) {
    mix.sass('app.scss');
});

elixir(function(mix) {
    mix.browserify('app.js');
});

elixir(function(mix) {
    mix.version(['css/app.css', 'js/app.js']);
});
  

я получаю сообщение об ошибке [Vue warn]: Cannot find element: body

любая помощь приветствуется,

я вижу только {{message}} вместо Hello Vue World, когда я его запускаю.

Последовал некоторому руководству здесь: https://asked.io/quick-start-guide—laravel-5—vue-js—bootstrap-3

Ответ №1:

Попробуйте поместить тег вашего скрипта в конец тела вместо заголовка.
Когда скрипт загружается внутри тега head, тело еще не существует.