我想利用 VueJS 组件来清理我的脚本。因此,对于要加载到 Laravel 的每个页面,我都有一个组件。到目前为止一切正常。但是我在将当前的脚本逻辑转移到组件时遇到了问题。
这是导入要使用的组件的当前脚本设置:
main.js
import HomeView from './components/HomeView.vue';
import IncidentView from './components/IncidentView.vue';
window.app = new Vue({
el: '.content',
components: {
HomeView, IncidentView
},
methods: {
// Init GIS
init: function() {
// Initialize GIS Map
initGISMap(this.$els.map);
},
}
(...)
}
对我来说关键是window.app = new Vue...
零件。我使用谷歌地图,因此在加载页面时它会搜索 app.init 方法。这是我在刀片模板中加载的脚本的一部分:
<!DOCTYPE html>
<html>
<body class="hold-transition skin-blue sidebar-mini">
<section class="content-header">
<h1>
@yield('page_title')
<small>@yield('page_description')</small>
</h1>
</section>
<!-- Main content -->
<section class="content">
@if (isset($vueView))
<component is="{{ $vueView }}">
@endif
@yield('content')
</component>
</section>
<!-- /.content -->
<script src="https://maps.googleapis.com/maps/api/js?key=KEY&libraries=places&callback=app.init" async defer></script>
</body>
</html>
各个页面(我在 Vue 中为每个模块创建的地方)如下所示:
@extends('app', ['vueView' => 'home-view'])
@section('page_title', 'title')
@section('page_description', 'title')
@section('content')
content
@endsection
通过定义vueView
变量,使用了我在脚本中导入的正确模块。
目标是使用HomeView
组件作为主要的谷歌地图视图。以及单击主题中的相应链接时加载的不同页面的其他组件。最后,我不想在一个脚本中包含所有 VueJS 代码。因此模型。
当我传输这个当前 JS 文件的所有内容时,我收到一个错误,抱怨这app.init
不是一个函数。该组件如下所示:
<script>
export default {
data: {
// SEARCH
addressComponents: '',
autocompletePlace: '',
autocompleteAddress: '',
(...)
}
如何以某种方式修改我的组件,以使 app.init 加载仍然有效?