我没有在应用程序中使用任何vue组件,我只是使用app.js
文件来将我的npm软件包编译为资产js/app.js
或css/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
有什么主意吗?
答案 0 :(得分:0)
但是我不确定为什么,但是我添加了Vue.use(clipboard);
,它已停止显示错误。