Я не использую никакой компонент vue в своем приложении, я просто использую файл app.js
, чтобы скомпилировать мои пакеты npm в мои активы js/app.js
или css/app.css
, но я получаю ошибку [Vue warn]: Error compiling template:
в консоли.
Я не уверен, почему это так!
Код
Файл app.js:
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
@extends('layouts.admin')
@section('content')
data
@endsection
Есть идеи?