im new at Laravel And i have this problem when i use vue for select another data My date picker stopped working and when i click on it is not shown ,
this is the HTML code :
<div class="col-md-3">
@include('new_admin.components.inputs.datepicker', [
'options' => [
'name' => 'created_at_from',
'label' => trans('admin_index.created_at') . ' (' . trans('admin_index.from') . ')',
'value' => old('created_at_from'),
]
])
</div>
and when i use this script :
var SearchApplication = new Vue({
el: '#datatable1-advanced-search',
data: {
sku: null,
},
});
the datepicker stopped showing .