我正在尝试使用vue.js组件,但是表模板未显示在index.blade.php中,我已经在Google中搜索了它,但对我没有帮助
<div id="app">
<h1>@{{6+9}}</h1>
<employee-component></employee-component>
</div>
<script src="{{asset('js/app.js')}}"></script>
Vue.component('employee-component', require('./components/Employee.vue'));
const app = new Vue({
el: '#app',
});
<template>
<table class="table table-bordered">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
</tr>
</template>
15
Npm Run dev
Npm Run watch-pool
Npm Run watch