Files
thetool/public/js/pages/WarehouseOrderRecommendation/WarehouseOrderRecommendation.js
2024-07-16 06:55:46 +00:00

13 lines
370 B
JavaScript

Vue.component('warehouse-order-recommendation', {
//language=Vue
template: `
<tt-card>
<tt-table-crud @openHistory="historyModal = true; historyModalId = $event.id"/>
</tt-card>
`, data() {
return {
window: window, historyModal: false, historyModalId: null,
}
},
})