Vue2 在 Laravel 5.4 中没有变化

Posted

技术标签:

【中文标题】Vue2 在 Laravel 5.4 中没有变化【英文标题】:Vue2 not change in Laravel 5.4 【发布时间】:2017-08-02 19:59:54 【问题描述】:

我正在尝试在 Laravel 中使用 Vue。当我修改 example.vue 并将其添加到视图中时,视图没有变化。这是 Laravel 的 .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>

我试图修改这个文件并运行 npm run dev,但没有看到任何变化。 ¿ 有什么想法吗?

【问题讨论】:

【参考方案1】:

您可能需要取消注释 app.js 中的 require 行。在 Laravel 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');

/**
 * 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'));
// ^^^^^^^^^^^^^^^^^^^^^^ Uncomment this line ^^^^^^^^^^^^^^^^^^^^^^

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

【讨论】:

以上是关于Vue2 在 Laravel 5.4 中没有变化的主要内容,如果未能解决你的问题,请参考以下文章

无法将 Laravel 连接到 MailChimp(laravel 5.4)

Laravel 5.4,AJAX 应该不会出错

Laravel 5.4:发布没有表单或隐藏 url 的路由

在 laravel 5.4 中检索软删除的用户帖子

从 Laravel 5.3 升级到 Laravel 5.4 并且空字段转换为 NULL

Laravel 5.4 下载 csv 文件不起作用