24 lines
836 B
Vue
24 lines
836 B
Vue
<template>
|
|
<interventions-template>
|
|
<template #intervention-new-action>
|
|
<add-button text="Ajouter" />
|
|
</template>
|
|
<template #select-filter>
|
|
<filter-table />
|
|
</template>
|
|
<template #intervention-other-action>
|
|
<table-action />
|
|
</template>
|
|
<template #intervention-table>
|
|
<interventions-list />
|
|
</template>
|
|
</interventions-template>
|
|
</template>
|
|
<script setup>
|
|
import InterventionsTemplate from "@/components/templates/Interventions/InterventionsTemplate.vue";
|
|
import addButton from "@/components/molecules/new-button/addButton.vue";
|
|
import FilterTable from "@/components/molecules/Tables/FilterTable.vue";
|
|
import TableAction from "@/components/molecules/Tables/TableAction.vue";
|
|
import interventionsList from "@/components/molecules/Interventions/interventionsList.vue";
|
|
</script>
|