Laravel 5.6和Vue.js 2中未显示模板

时间:2018-08-15 02:44:02

标签: laravel vuejs2 vue-component

我正在尝试使用vue.js组件,但是表模板未显示在index.blade.php中,我已经在Google中搜索了它,但对我没有帮助

Index.blade.php

<div id="app">
    <h1>@{{6+9}}</h1>
    <employee-component></employee-component>
</div>

<script src="{{asset('js/app.js')}}"></script>

resource / assets / js / app.js

Vue.component('employee-component', require('./components/Employee.vue'));

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

Employee.vue

<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

0 个答案:

没有答案