Export default components for InvoicingBillingPeriodImportView and InvoicingBillingPeriodImportDates
This commit is contained in:
+12
-1
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { ref, computed, watch } from "vue";
|
||||
import { ref, computed } from "vue";
|
||||
|
||||
/**
|
||||
* Dates Module -> Variables
|
||||
@@ -73,4 +73,15 @@ export const dates = {
|
||||
functions: functionsDates,
|
||||
computed: computedDates,
|
||||
};
|
||||
|
||||
// Export default component
|
||||
export default {
|
||||
name: "InvoicingBillingPeriodImportDates",
|
||||
setup() {
|
||||
// Initial setup or any additional logic can go here
|
||||
return {
|
||||
dates,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
+17
-1
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { ref, computed, watch } from "vue";
|
||||
import { ref, computed } from "vue";
|
||||
import InvoicingBillingPeriodViewHome
|
||||
from "@/views/dashboards/superUserDashboard/InvoicingBillingPeriod/views/InvoicingBillingPeriodViewHome.vue";
|
||||
import InvoicingBillingPeriodViewVA
|
||||
@@ -85,4 +85,20 @@ export const view = {
|
||||
functions: functionsViews,
|
||||
computed: computedViews
|
||||
};
|
||||
|
||||
// Export default component
|
||||
export default {
|
||||
name: "InvoicingBillingPeriodImportView",
|
||||
components: {
|
||||
InvoicingBillingPeriodViewHome,
|
||||
InvoicingBillingPeriodViewVA,
|
||||
InvoicingBillingPeriodViewFixedPricing,
|
||||
InvoicingBillingPeriodViewTankCleaning,
|
||||
},
|
||||
setup() {
|
||||
return {
|
||||
view,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user