vue-laravel-crud 1.4.14 → 1.4.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue-laravel-crud.esm.js +61 -21
- package/dist/vue-laravel-crud.min.js +1 -1
- package/dist/vue-laravel-crud.ssr.js +172 -86
- package/package.json +1 -1
- package/src/vue-laravel-crud.vue +75 -57
|
@@ -17305,7 +17305,7 @@ var moment$1 = {
|
|
|
17305
17305
|
})));
|
|
17306
17306
|
} (moment$1));
|
|
17307
17307
|
|
|
17308
|
-
var moment = momentExports;var e=[],t=[];function n(n,r){if(n&&"undefined"!=typeof document){var a,s=!0===r.prepend?"prepend":"append",d=!0===r.singleTag,i="string"==typeof r.container?document.querySelector(r.container):document.getElementsByTagName("head")[0];if(d){var u=e.indexOf(i);-1===u&&(u=e.push(i)-1,t[u]={}),a=t[u]&&t[u][s]?t[u][s]:t[u][s]=c();}else a=c();65279===n.charCodeAt(0)&&(n=n.substring(1)),a.styleSheet?a.styleSheet.cssText+=n:a.appendChild(document.createTextNode(n));}function c(){var e=document.createElement("style");if(e.setAttribute("type","text/css"),r.attributes)for(var t=Object.keys(r.attributes),n=0;n<t.length;n++)e.setAttribute(t[n],r.attributes[t[n]]);var a="prepend"===s?"afterbegin":"beforeend";return i.insertAdjacentElement(a,e),e}}var css = "tr td[data-v-
|
|
17308
|
+
var moment = momentExports;var e=[],t=[];function n(n,r){if(n&&"undefined"!=typeof document){var a,s=!0===r.prepend?"prepend":"append",d=!0===r.singleTag,i="string"==typeof r.container?document.querySelector(r.container):document.getElementsByTagName("head")[0];if(d){var u=e.indexOf(i);-1===u&&(u=e.push(i)-1,t[u]={}),a=t[u]&&t[u][s]?t[u][s]:t[u][s]=c();}else a=c();65279===n.charCodeAt(0)&&(n=n.substring(1)),a.styleSheet?a.styleSheet.cssText+=n:a.appendChild(document.createTextNode(n));}function c(){var e=document.createElement("style");if(e.setAttribute("type","text/css"),r.attributes)for(var t=Object.keys(r.attributes),n=0;n<t.length;n++)e.setAttribute(t[n],r.attributes[t[n]]);var a="prepend"===s?"afterbegin":"beforeend";return i.insertAdjacentElement(a,e),e}}var css = "tr td[data-v-1f4fa85d]:last-child,\ntr td[data-v-1f4fa85d]:first-child {\n width: 1%;\n white-space: nowrap; }\n\n.crud-pagination[data-v-1f4fa85d] {\n display: flex;\n justify-content: center; }\n\n.crud-header[data-v-1f4fa85d] {\n display: flex;\n justify-content: space-between;\n max-height: 3rem; }\n .crud-header[data-v-1f4fa85d] .crud-title[data-v-1f4fa85d] {\n margin: 0; }\n .crud-header[data-v-1f4fa85d] .crud-search[data-v-1f4fa85d] {\n max-width: 15rem; }\n .crud-header[data-v-1f4fa85d] .crud-search[data-v-1f4fa85d] .btn[data-v-1f4fa85d] {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n border-top-right-radius: 0.375rem;\n border-bottom-right-radius: 0.375rem; }\n .crud-header[data-v-1f4fa85d] .crud-search[data-v-1f4fa85d] .btn[data-v-1f4fa85d].open[data-v-1f4fa85d] {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n .crud-header[data-v-1f4fa85d] .table-options[data-v-1f4fa85d] {\n margin-bottom: 1rem;\n display: flex;\n align-items: center;\n justify-content: flex-end; }\n\n.custom-control[data-v-1f4fa85d] {\n position: relative;\n top: -15px; }\n\n@media (min-width: 992px) {\n .table[data-v-1f4fa85d] {\n table-layout: auto; }\n .table[data-v-1f4fa85d] tbody[data-v-1f4fa85d] td[data-v-1f4fa85d] {\n overflow: scroll;\n -ms-overflow-style: none;\n /* IE and Edge */\n scrollbar-width: none;\n /* Firefox */ }\n .table[data-v-1f4fa85d] tbody[data-v-1f4fa85d] td[data-v-1f4fa85d]::-webkit-scrollbar {\n display: none; } }\n";
|
|
17309
17309
|
n(css, {});function normalizeComponent (
|
|
17310
17310
|
scriptExports,
|
|
17311
17311
|
render,
|
|
@@ -17656,7 +17656,10 @@ n(css, {});function normalizeComponent (
|
|
|
17656
17656
|
}
|
|
17657
17657
|
},
|
|
17658
17658
|
mounted: function mounted() {
|
|
17659
|
-
if (this.useVuexORM)
|
|
17659
|
+
if (this.useVuexORM) {
|
|
17660
|
+
//this.useVuexORM = true;
|
|
17661
|
+
this.item = new this.model();
|
|
17662
|
+
} else {
|
|
17660
17663
|
this.item = this.model;
|
|
17661
17664
|
this.itemDefault = JSON.parse(JSON.stringify(this.item));
|
|
17662
17665
|
}
|
|
@@ -17692,9 +17695,6 @@ n(css, {});function normalizeComponent (
|
|
|
17692
17695
|
paginationIndexEnd: function paginationIndexEnd() {
|
|
17693
17696
|
return this.paginationIndexStart + this.pagination.per_page;
|
|
17694
17697
|
},
|
|
17695
|
-
/* filteredItems() {
|
|
17696
|
-
return this.items;
|
|
17697
|
-
},*/
|
|
17698
17698
|
finalFilters: function finalFilters() {
|
|
17699
17699
|
return [].concat(_toConsumableArray$1(this.filters), _toConsumableArray$1(this.filter), _toConsumableArray$1(this.internalFilter));
|
|
17700
17700
|
},
|
|
@@ -18005,43 +18005,80 @@ n(css, {});function normalizeComponent (
|
|
|
18005
18005
|
centered: true
|
|
18006
18006
|
}).then(function (value) {
|
|
18007
18007
|
if (value) {
|
|
18008
|
-
_this10.
|
|
18009
|
-
axios.delete(_this10.apiUrl + "/" + _this10.modelName + "/" + id).then(function (response) {
|
|
18010
|
-
_this10.items.splice(index, 1);
|
|
18011
|
-
_this10.toastSuccess("Elemento eliminado.");
|
|
18012
|
-
_this10.loading = false;
|
|
18013
|
-
}).catch(function (error) {
|
|
18014
|
-
_this10.toastError(error);
|
|
18015
|
-
_this10.loading = false;
|
|
18016
|
-
});
|
|
18008
|
+
_this10.deleteItem(id, index);
|
|
18017
18009
|
}
|
|
18018
18010
|
}).catch(function (error) {
|
|
18019
18011
|
_this10.toastError(error);
|
|
18020
18012
|
_this10.loading = false;
|
|
18021
18013
|
});
|
|
18022
18014
|
},
|
|
18023
|
-
|
|
18015
|
+
deleteItem: function deleteItem(id, index) {
|
|
18024
18016
|
var _this11 = this;
|
|
18017
|
+
if (this.useVuexORM) {
|
|
18018
|
+
return this.deleteItemVuex(id, index);
|
|
18019
|
+
}
|
|
18020
|
+
this.loading = true;
|
|
18021
|
+
axios.delete(this.apiUrl + "/" + this.modelName + "/" + id).then(function (response) {
|
|
18022
|
+
_this11.items.splice(index, 1);
|
|
18023
|
+
_this11.toastSuccess("Elemento eliminado.");
|
|
18024
|
+
_this11.loading = false;
|
|
18025
|
+
}).catch(function (error) {
|
|
18026
|
+
_this11.toastError(error);
|
|
18027
|
+
_this11.loading = false;
|
|
18028
|
+
});
|
|
18029
|
+
},
|
|
18030
|
+
deleteItemVuex: function deleteItemVuex(id, index) {
|
|
18031
|
+
var _this12 = this;
|
|
18032
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
18033
|
+
var result;
|
|
18034
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
18035
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
18036
|
+
case 0:
|
|
18037
|
+
_context2.next = 2;
|
|
18038
|
+
return _this12.model.api().delete('/' + id, {
|
|
18039
|
+
delete: 1
|
|
18040
|
+
});
|
|
18041
|
+
case 2:
|
|
18042
|
+
result = _context2.sent;
|
|
18043
|
+
console.debug("delete item vuex", result);
|
|
18044
|
+
result.response.status;
|
|
18045
|
+
if (!result.response.data.error) {
|
|
18046
|
+
_context2.next = 8;
|
|
18047
|
+
break;
|
|
18048
|
+
}
|
|
18049
|
+
_this12.toastError(result.response.data.error);
|
|
18050
|
+
return _context2.abrupt("return");
|
|
18051
|
+
case 8:
|
|
18052
|
+
_this12.toastSuccess("Elemento eliminado.");
|
|
18053
|
+
case 9:
|
|
18054
|
+
case "end":
|
|
18055
|
+
return _context2.stop();
|
|
18056
|
+
}
|
|
18057
|
+
}, _callee2);
|
|
18058
|
+
}))();
|
|
18059
|
+
},
|
|
18060
|
+
saveSort: function saveSort() {
|
|
18061
|
+
var _this13 = this;
|
|
18025
18062
|
if (this.orderable) {
|
|
18026
18063
|
this.loading = true;
|
|
18027
18064
|
var order = [];
|
|
18028
18065
|
this.items.forEach(function (v, k) {
|
|
18029
18066
|
order.push({
|
|
18030
18067
|
id: v.id,
|
|
18031
|
-
order: v[
|
|
18068
|
+
order: v[_this13.orderProp]
|
|
18032
18069
|
});
|
|
18033
18070
|
});
|
|
18034
18071
|
axios.post(this.apiUrl + "/" + this.modelName + "/sort", {
|
|
18035
18072
|
order: order
|
|
18036
18073
|
}).then(function (response) {
|
|
18037
18074
|
response.data;
|
|
18038
|
-
|
|
18039
|
-
if (
|
|
18040
|
-
|
|
18075
|
+
_this13.toastSuccess("Orden Actualizado");
|
|
18076
|
+
if (_this13.refreshAfterSave) _this13.refresh();
|
|
18077
|
+
_this13.loading = false;
|
|
18041
18078
|
}).catch(function (error) {
|
|
18042
18079
|
//console.debug(error);
|
|
18043
|
-
|
|
18044
|
-
|
|
18080
|
+
_this13.toastError(error);
|
|
18081
|
+
_this13.loading = false;
|
|
18045
18082
|
});
|
|
18046
18083
|
}
|
|
18047
18084
|
},
|
|
@@ -18076,112 +18113,161 @@ n(css, {});function normalizeComponent (
|
|
|
18076
18113
|
});
|
|
18077
18114
|
return ops.join(", ");
|
|
18078
18115
|
},
|
|
18116
|
+
saveItemVuex: function saveItemVuex() {
|
|
18117
|
+
var _this14 = this;
|
|
18118
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
|
18119
|
+
var jsondata, result;
|
|
18120
|
+
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
18121
|
+
while (1) switch (_context3.prev = _context3.next) {
|
|
18122
|
+
case 0:
|
|
18123
|
+
jsondata = _this14.item.$toJson();
|
|
18124
|
+
console.debug("save item ", _this14.item, jsondata);
|
|
18125
|
+
if (!_this14.item.id) {
|
|
18126
|
+
_context3.next = 9;
|
|
18127
|
+
break;
|
|
18128
|
+
}
|
|
18129
|
+
_context3.next = 6;
|
|
18130
|
+
return _this14.model.api().put('/' + _this14.item.id, jsondata);
|
|
18131
|
+
case 6:
|
|
18132
|
+
result = _context3.sent;
|
|
18133
|
+
_context3.next = 12;
|
|
18134
|
+
break;
|
|
18135
|
+
case 9:
|
|
18136
|
+
_context3.next = 11;
|
|
18137
|
+
return _this14.model.api().post('', jsondata);
|
|
18138
|
+
case 11:
|
|
18139
|
+
result = _context3.sent;
|
|
18140
|
+
case 12:
|
|
18141
|
+
result.response.status;
|
|
18142
|
+
if (!result.response.data.error) {
|
|
18143
|
+
_context3.next = 16;
|
|
18144
|
+
break;
|
|
18145
|
+
}
|
|
18146
|
+
_this14.toastError(result.response.data.error);
|
|
18147
|
+
return _context3.abrupt("return");
|
|
18148
|
+
case 16:
|
|
18149
|
+
result.save();
|
|
18150
|
+
if (_this14.refreshAfterSave) _this14.refresh();
|
|
18151
|
+
_this14.toastSuccess("Elemento Modificado");
|
|
18152
|
+
case 19:
|
|
18153
|
+
case "end":
|
|
18154
|
+
return _context3.stop();
|
|
18155
|
+
}
|
|
18156
|
+
}, _callee3);
|
|
18157
|
+
}))();
|
|
18158
|
+
},
|
|
18079
18159
|
saveItem: function saveItem() {
|
|
18080
|
-
var
|
|
18081
|
-
|
|
18082
|
-
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function
|
|
18160
|
+
var _arguments3 = arguments,
|
|
18161
|
+
_this15 = this;
|
|
18162
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4() {
|
|
18083
18163
|
var event, validation_result, validation_error_message, formData;
|
|
18084
|
-
return _regeneratorRuntime().wrap(function
|
|
18085
|
-
while (1) switch (
|
|
18164
|
+
return _regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
18165
|
+
while (1) switch (_context4.prev = _context4.next) {
|
|
18086
18166
|
case 0:
|
|
18087
|
-
event =
|
|
18088
|
-
|
|
18089
|
-
if (!
|
|
18090
|
-
|
|
18167
|
+
event = _arguments3.length > 0 && _arguments3[0] !== undefined ? _arguments3[0] : null;
|
|
18168
|
+
_this15.loading = true;
|
|
18169
|
+
if (!_this15.validate) {
|
|
18170
|
+
_context4.next = 10;
|
|
18091
18171
|
break;
|
|
18092
18172
|
}
|
|
18093
18173
|
validation_result = true;
|
|
18094
|
-
validation_error_message =
|
|
18174
|
+
validation_error_message = _this15.messageDefaultValidationError;
|
|
18095
18175
|
if (validation_result) {
|
|
18096
|
-
|
|
18176
|
+
_context4.next = 8;
|
|
18097
18177
|
break;
|
|
18098
18178
|
}
|
|
18099
|
-
|
|
18100
|
-
return
|
|
18179
|
+
_this15.toastError(validation_error_message);
|
|
18180
|
+
return _context4.abrupt("return");
|
|
18101
18181
|
case 8:
|
|
18102
|
-
|
|
18182
|
+
_context4.next = 11;
|
|
18103
18183
|
break;
|
|
18104
18184
|
case 10:
|
|
18105
18185
|
if (event) event.preventDefault();
|
|
18106
18186
|
case 11:
|
|
18107
|
-
if (
|
|
18108
|
-
|
|
18109
|
-
|
|
18110
|
-
|
|
18187
|
+
if (!_this15.useVuexORM) {
|
|
18188
|
+
_context4.next = 13;
|
|
18189
|
+
break;
|
|
18190
|
+
}
|
|
18191
|
+
return _context4.abrupt("return", _this15.saveItemVuex());
|
|
18192
|
+
case 13:
|
|
18193
|
+
if (_this15.item.id) {
|
|
18194
|
+
axios.put(_this15.apiUrl + "/" + _this15.modelName + "/" + _this15.item.id, _this15.item).then(function (response) {
|
|
18195
|
+
if (_this15.hideModalAfterSave) {
|
|
18196
|
+
_this15.$bvModal.hide("modal-form-item-" + _this15.modelName);
|
|
18111
18197
|
}
|
|
18112
18198
|
var itemSv = response.data;
|
|
18113
|
-
var itemIndex =
|
|
18114
|
-
return item.id ==
|
|
18199
|
+
var itemIndex = _this15.items.findIndex(function (item) {
|
|
18200
|
+
return item.id == _this15.item.id;
|
|
18115
18201
|
});
|
|
18116
|
-
|
|
18117
|
-
|
|
18118
|
-
|
|
18119
|
-
if (
|
|
18120
|
-
|
|
18202
|
+
_this15.items[itemIndex] = itemSv;
|
|
18203
|
+
_this15.item = itemSv;
|
|
18204
|
+
_this15.loading = false;
|
|
18205
|
+
if (_this15.refreshAfterSave) _this15.refresh();
|
|
18206
|
+
_this15.toastSuccess("Elemento Modificado");
|
|
18121
18207
|
}).catch(function (error) {
|
|
18122
|
-
|
|
18123
|
-
|
|
18208
|
+
_this15.toastError(error);
|
|
18209
|
+
_this15.loading = false;
|
|
18124
18210
|
});
|
|
18125
18211
|
} else {
|
|
18126
|
-
if (
|
|
18212
|
+
if (_this15.createMultipart) {
|
|
18127
18213
|
formData = new FormData();
|
|
18128
|
-
Object.keys(
|
|
18129
|
-
if (
|
|
18130
|
-
var files =
|
|
18214
|
+
Object.keys(_this15.item).forEach(function (key) {
|
|
18215
|
+
if (_this15.item[key][0] && _this15.item[key][0].name) {
|
|
18216
|
+
var files = _this15.item[key];
|
|
18131
18217
|
for (var x = 0; x < files.length; x++) {
|
|
18132
|
-
formData.append(key + "[]",
|
|
18218
|
+
formData.append(key + "[]", _this15.item[key][x], _this15.item[key][x].name);
|
|
18133
18219
|
}
|
|
18134
|
-
} else formData.append(key,
|
|
18220
|
+
} else formData.append(key, _this15.item[key]);
|
|
18135
18221
|
});
|
|
18136
|
-
axios.post(
|
|
18137
|
-
|
|
18138
|
-
if (
|
|
18139
|
-
|
|
18222
|
+
axios.post(_this15.apiUrl + "/" + _this15.modelName, formData).then(function (response) {
|
|
18223
|
+
_this15.loading = false;
|
|
18224
|
+
if (_this15.hideModalAfterSave) {
|
|
18225
|
+
_this15.$bvModal.hide("modal-form-item-" + _this15.modelName);
|
|
18140
18226
|
}
|
|
18141
18227
|
if (response.data.success) {
|
|
18142
18228
|
if (response.data.message) {
|
|
18143
|
-
|
|
18229
|
+
_this15.toastSuccess(response.data.message);
|
|
18144
18230
|
}
|
|
18145
18231
|
return;
|
|
18146
18232
|
}
|
|
18147
18233
|
var itemSv = response.data;
|
|
18148
|
-
|
|
18149
|
-
|
|
18150
|
-
if (
|
|
18151
|
-
|
|
18234
|
+
_this15.items.push(itemSv);
|
|
18235
|
+
_this15.item = itemSv;
|
|
18236
|
+
if (_this15.refreshAfterSave) _this15.refresh();
|
|
18237
|
+
_this15.toastSuccess("Elemento Creado");
|
|
18152
18238
|
}).catch(function (error) {
|
|
18153
|
-
|
|
18154
|
-
|
|
18239
|
+
_this15.toastError(error);
|
|
18240
|
+
_this15.loading = false;
|
|
18155
18241
|
});
|
|
18156
18242
|
} else {
|
|
18157
|
-
axios.post(
|
|
18158
|
-
|
|
18159
|
-
if (
|
|
18160
|
-
|
|
18243
|
+
axios.post(_this15.apiUrl + "/" + _this15.modelName, _this15.item).then(function (response) {
|
|
18244
|
+
_this15.loading = false;
|
|
18245
|
+
if (_this15.hideModalAfterSave) {
|
|
18246
|
+
_this15.$bvModal.hide("modal-form-item-" + _this15.modelName);
|
|
18161
18247
|
}
|
|
18162
18248
|
if (response.data.success) {
|
|
18163
18249
|
if (response.data.message) {
|
|
18164
|
-
|
|
18250
|
+
_this15.toastSuccess(response.data.message);
|
|
18165
18251
|
}
|
|
18166
18252
|
return;
|
|
18167
18253
|
}
|
|
18168
18254
|
var itemSv = response.data;
|
|
18169
|
-
|
|
18170
|
-
|
|
18171
|
-
if (
|
|
18172
|
-
|
|
18255
|
+
_this15.items.push(itemSv);
|
|
18256
|
+
_this15.item = itemSv;
|
|
18257
|
+
if (_this15.refreshAfterSave) _this15.refresh();
|
|
18258
|
+
_this15.toastSuccess("Elemento Creado");
|
|
18173
18259
|
}).catch(function (error) {
|
|
18174
|
-
|
|
18175
|
-
|
|
18260
|
+
_this15.toastError(error);
|
|
18261
|
+
_this15.loading = false;
|
|
18176
18262
|
});
|
|
18177
18263
|
}
|
|
18178
18264
|
}
|
|
18179
18265
|
if (event) event.preventDefault();
|
|
18180
|
-
case
|
|
18266
|
+
case 15:
|
|
18181
18267
|
case "end":
|
|
18182
|
-
return
|
|
18268
|
+
return _context4.stop();
|
|
18183
18269
|
}
|
|
18184
|
-
},
|
|
18270
|
+
}, _callee4);
|
|
18185
18271
|
}))();
|
|
18186
18272
|
},
|
|
18187
18273
|
toastError: function toastError(error) {
|
|
@@ -18226,10 +18312,10 @@ n(css, {});function normalizeComponent (
|
|
|
18226
18312
|
});
|
|
18227
18313
|
},
|
|
18228
18314
|
onChangeFilter: function onChangeFilter(event) {
|
|
18229
|
-
var
|
|
18315
|
+
var _this16 = this;
|
|
18230
18316
|
this.forceRecomputeCounter++;
|
|
18231
18317
|
setTimeout(function () {
|
|
18232
|
-
|
|
18318
|
+
_this16.refresh();
|
|
18233
18319
|
}, 1);
|
|
18234
18320
|
},
|
|
18235
18321
|
onPaginationChange: function onPaginationChange(page) {
|
|
@@ -18330,7 +18416,7 @@ var _sfc_render = function render() {
|
|
|
18330
18416
|
callback: function callback($$v) {
|
|
18331
18417
|
_vm.$set(_vm.internalFilterByProp(column.prop + '_from'), "value", $$v);
|
|
18332
18418
|
},
|
|
18333
|
-
expression: "\n
|
|
18419
|
+
expression: "\n internalFilterByProp(column.prop + '_from').value\n "
|
|
18334
18420
|
}
|
|
18335
18421
|
})], 1), _c('div', {
|
|
18336
18422
|
staticClass: "col-6"
|
|
@@ -18346,7 +18432,7 @@ var _sfc_render = function render() {
|
|
|
18346
18432
|
callback: function callback($$v) {
|
|
18347
18433
|
_vm.$set(_vm.internalFilterByProp(column.prop + '_to'), "value", $$v);
|
|
18348
18434
|
},
|
|
18349
|
-
expression: "\n
|
|
18435
|
+
expression: "\n internalFilterByProp(column.prop + '_to').value\n "
|
|
18350
18436
|
}
|
|
18351
18437
|
})], 1)])]) : column.type == 'state' ? _c('div', {
|
|
18352
18438
|
staticClass: "form-group"
|
|
@@ -18618,7 +18704,7 @@ var _sfc_render = function render() {
|
|
|
18618
18704
|
callback: function callback($$v) {
|
|
18619
18705
|
_vm.$set(_vm.internalFilterByProp(column.prop + '_from'), "value", $$v);
|
|
18620
18706
|
},
|
|
18621
|
-
expression: "\n
|
|
18707
|
+
expression: "\n internalFilterByProp(column.prop + '_from').value\n "
|
|
18622
18708
|
}
|
|
18623
18709
|
})], 1), _c('div', {
|
|
18624
18710
|
staticClass: "col-6"
|
|
@@ -18634,7 +18720,7 @@ var _sfc_render = function render() {
|
|
|
18634
18720
|
callback: function callback($$v) {
|
|
18635
18721
|
_vm.$set(_vm.internalFilterByProp(column.prop + '_to'), "value", $$v);
|
|
18636
18722
|
},
|
|
18637
|
-
expression: "\n
|
|
18723
|
+
expression: "\n internalFilterByProp(column.prop + '_to').value\n "
|
|
18638
18724
|
}
|
|
18639
18725
|
})], 1)]) : column.type == 'state' ? _c('select', {
|
|
18640
18726
|
directives: [{
|
|
@@ -19109,7 +19195,7 @@ var _sfc_render = function render() {
|
|
|
19109
19195
|
})], 2)], 1);
|
|
19110
19196
|
};
|
|
19111
19197
|
var _sfc_staticRenderFns = [];
|
|
19112
|
-
var __component__ = /*#__PURE__*/normalizeComponent(_sfc_main, _sfc_render, _sfc_staticRenderFns, false, null, "
|
|
19198
|
+
var __component__ = /*#__PURE__*/normalizeComponent(_sfc_main, _sfc_render, _sfc_staticRenderFns, false, null, "1f4fa85d", null, null);
|
|
19113
19199
|
var component$1 = __component__.exports;// Import vue component
|
|
19114
19200
|
|
|
19115
19201
|
// Default export is installable instance of component.
|