我想在我的使用Laravel 5.2版本构建的应用中使用此source2进行提醒。我已经安装了它并创建了一个这样的组件:
<script>
import Simplert from 'vue2-simplert'
export default {
data () {
return {
obj: {
title: 'Alert Title',
message: 'Alert Message',
type: 'info',
useConfirmBtn: true,
customConfirmBtnText: 'OK'
},
}
},
methods: {
openSimplert () {
this.$refs.simplert.openSimplert(this.obj)
},
}
}
</script>
我正在app.js
注册该组件,如下所示:
Vue.component('alert', require('./components/Alert.vue'));
const app = new Vue({
el: '#app'
});
然后尝试在我的模板中使用它:
<alert :useRadius="true"
:useIcon="true"
ref="simplert">
</alert>
这是此模板的一部分:
@section('content')
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<a class="btn btn-info link-button" href="/extras/create" role="button">Lag ny extra</a>
<div class="panel panel-default">
<div class="panel-heading">Extras</div>
<div class="panel-body">
@foreach($data as $extra)
<div class="media row">
<div class="media-left col-sm-3">
<a href="#">
<img class="media-object" src="/img/extras/{{ $extra->image_path }}" alt="{{ $extra->title }}">
</a>
</div>
<div class="media-body col-sm-6">
<h4 class="media-heading">{{ $extra->title }}</h4>
<p>{{ $extra->description }}</p>
</div>
<div class="col-sm-3 action-buttons">
<a class="btn btn-info" href="/extras/create" role="button">Rediger</a>
<alert :useRadius="true"
:useIcon="true"
ref="simplert">
</alert>
</div>
</div>
@endforeach
</div>
</div>
</div>
</div>
</div>
@endsection
其中包含的应用模板如下:
<div id="app">
<nav class="navbar navbar-default navbar-static-top">
...
</nav>
@yield('content')
</div>
我可以在vue调试工具中看到该组件,但是没有创建html,我只能看到这个:
<!--function (a, b, c, d) { return createElement(vm, a, b, c, d, true); }-->
Ant我在控制台中收到错误:
[Vue警告]:无法安装组件:模板或渲染功能 定义
在
中找到---&GT;
更新
使用Laravel 5.5创建新项目之后,我认为Laravel 5.2中的设置是创建问题,我添加了相同的库和组件,但是这个组件仍然会抛出错误,幸运的是其他组件现在可以工作了,但这仍然给出了相同的错误,使用默认的Laravel 5.5设置。
答案 0 :(得分:1)
刚刚发现simplert also exists as Vue plugin。这应该简化整个过程并且它实现得更好,因为它使用事件总线进行打开/关闭,并且它不再使用$refs
根据official Vue docs应该避免使用。{/ p>
您可以在 app.js :
中执行此操作import Simplert from 'vue2-simplert-plugin'
Vue.use(Simplert)
const app = new Vue({
el: '#app',
data: {
obj: {
title: 'Alert Title',
message: 'Alert Message',
type: 'info',
useConfirmBtn: true,
customConfirmBtnText: 'OK'
}
},
methods: {
openSimplert () {
this.$Simplert.open(this.obj)
},
closeSimplert () {
this.$Simplert.close()
}
}
})
在 Larvavel模板中,只需使用:
@section('content')
// ...
<simplert></simplert>
// ...
@endsection
wiki中的简单文档有点令人困惑,并且不是最新的插件。如果这对您有用,请告诉我!