laravel [Vue警告]:编译模板时出错:

时间:2018-09-24 01:47:50

标签: laravel vue.js laravel-blade

我没有在应用程序中使用任何vue组件,我只是使用app.js文件来将我的npm软件包编译为资产js/app.jscss/app.css,但是我却得到了{控制台中出现{1}}错误。

我不确定为什么会这样!

代码

app.js文件:

[Vue warn]: Error compiling template:

require('./bootstrap'); window.Vue = require('vue'); import clipboard from 'clipboard'; Vue.component('example-component', require('./components/ExampleComponent.vue')); const app = new Vue({ el: '#app' });

Layout

<body> <div id="app"> <div class="container-scroller"> @include('admin.partials.navbar') @yield('content') </div> </div> </body>

blades

有什么主意吗?

1 个答案:

答案 0 :(得分:0)

已解决

但是我不确定为什么,但是我添加了Vue.use(clipboard);,它已停止显示错误。