| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <AnchoredSection id="comparative">
- <LayoutContainer>
- <v-row class="center-90">
- <LayoutUISubTitle> Comparatif de nos solutions </LayoutUISubTitle>
- <LayoutUITitle>
- Choisissez la version qui vous convient !
- </LayoutUITitle>
- <CommonTableComparatif
- standard-price="34,90€"
- premium-price="49€"
- :items="comparisonItems"
- />
- <div class="asterisk">
- <span>** Uniquement dédié aux structures adhérentes CMF</span>
- </div>
- </v-row>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- import type { ComparisonItem } from '~/types/interface'
- const comparisonItems: Array<ComparisonItem> = [
- {
- label: 'GESTION DU RÉPERTOIRE',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'SUIVI PÉDAGOGIQUE',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'AGENDA',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'FACTURATION AUTOMATISÉE',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'GESTION DES RÈGLEMENTS',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'GESTION DU PARC MATÉRIEL',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'COMMUNICATION',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'SITE INTERNET',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'STATISTIQUES',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'EXPORT DES DONNÉES',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'FONCTIONNALITÉ DU RÉSEAU CMF **',
- includedInStandard: true,
- includedInPremium: true,
- },
- {
- label: 'EXTRANET UTILISATEURS',
- includedInStandard: false,
- includedInPremium: true,
- },
- {
- label: 'PRÉINSCRIPTION EN LIGNE',
- includedInStandard: false,
- includedInPremium: 'Option',
- },
- {
- label: "GRILLES D'ÉVALUATION",
- includedInStandard: false,
- includedInPremium: 'Option',
- },
- {
- label: 'GESTION DES RÈGLEMENTS',
- includedInStandard: false,
- includedInPremium: 'Option',
- },
- {
- label: 'EXPORT DE FACTURATION',
- includedInStandard: false,
- includedInPremium: 'Option',
- },
- {
- label: 'SMS',
- includedInStandard: 'Option',
- includedInPremium: 'Option',
- },
- {
- label: 'NOM DE DOMAINE',
- includedInStandard: 'Option',
- includedInPremium: 'Option',
- },
- {
- label: 'ESPACE DE STOCKAGE',
- includedInStandard: '500 Mo',
- includedInPremium: '1 Go',
- },
- {
- label: 'PAGES DU SITE INTERNET',
- includedInStandard: 'Restreint',
- includedInPremium: 'Illimité',
- },
- ]
- </script>
- <style scoped>
- .asterisk {
- display: flex;
- margin: 4px auto 0 auto;
- width: 63%;
- justify-content: flex-end;
- font-style: italic;
- }
- </style>
|