1
如何在單獨的文件中寫入Vue js代碼幷包含在laravel中 刀片頁面代碼?如何在單獨的文件中寫入Vue js代碼幷包含在laravel中
我也在使用gulp文件。
@section('js')
<script>
new Vue({
// Defining a element.
el: '#branddashboard-html',
data: {
// Defining data variable.
brandStats: null
},
// On load functionality.
created: function() {
// Initializing method.
this.getData();
},
},
// Methods to implement.
methods: {
getData: function() {
self.brandStats = null;
$.get('brand-stats/' + userId + '/' + period, function (data) {
self.brandStats = data;
});
}
}
});
</script>
@endsection