我试图在Laravel 5.3上设置Passport,但Vue组件似乎不会出现在刀片中。
以下是我的刀片代码:
@extends('connect.frame')
@section('title')
API Settings - KHConnect
@endsection
@section('header')
<!-- Page Header -->
<div class="content page-header" style="margin-bottom: 2em;">
<div class="container">
<h1 style="padding-top: 0.5em;font-size: 4em;">KHConnect</h1>
</div>
</div>
@endsection
@section('body')
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div class="row">
<passport-clients></passport-clients>
<passport-authorized-clients></passport-authorized-clients>
<passport-personal-access-tokens></passport-personal-access-tokens>
</div>
@endsection
以下是我的app.js中的代码:
/**
* First we will load all of this project's JavaScript dependencies which
* include Vue and Vue Resource. This gives a great starting point for
* building robust, powerful web applications using Vue and Laravel.
*/
require('./bootstrap');
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
Vue.component(
'passport-clients',
require('./components/passport/Clients.vue')
);
Vue.component(
'passport-authorized-clients',
require('./components/passport/AuthorizedClients.vue')
);
Vue.component(
'passport-personal-access-tokens',
require('./components/passport/PersonalAccessTokens.vue')
);
const app = new Vue({
el: '#app'
});
我已经运行了gulp
并安装了Laravel Elixir,并且正在我的刀片中加载<script src="{{asset('js/vue.min.js')}}"></script>
和<script src="{{asset('js/app.js')}}"></script>
。
提前致谢。
答案 0 :(得分:1)
A vue-js vm requires a root element to work on。在根元素id为“app”的问题中:
const app = new Vue({
el: '#app'
});
但是页面的HTML中缺少它。添加<div id="app">...</div>
容器解决了问题中的问题。