Comparatif.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <AnchoredSection id="comparative">
  3. <LayoutContainer>
  4. <LayoutUISubTitle>
  5. Comparatif de nos solutions
  6. </LayoutUISubTitle>
  7. <LayoutUITitle>
  8. Choisissez la version qui vous convient !
  9. </LayoutUITitle>
  10. <CommonTableComparatif
  11. standardPrice="14€"
  12. premiumPrice="18€"
  13. :items="comparisonItems"
  14. />
  15. </LayoutContainer>
  16. </AnchoredSection>
  17. </template>
  18. <script setup lang="ts">
  19. import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
  20. import { ComparisonItem } from "~/types/interface";
  21. const comparisonItems: Array<ComparisonItem> = [
  22. {
  23. label: "GESTION DU RÉPERTOIRE",
  24. includedInStandard: true,
  25. includedInPremium: true,
  26. },
  27. {
  28. label: "AGENDA",
  29. includedInStandard: true,
  30. includedInPremium: true,
  31. },
  32. {
  33. label: "GESTION DU PARC MATÉRIEL",
  34. includedInStandard: true,
  35. includedInPremium: true,
  36. },
  37. {
  38. label: "COMMUNICATION",
  39. includedInStandard: false,
  40. includedInPremium: true,
  41. },
  42. {
  43. label: "SMS",
  44. includedInStandard: "Option",
  45. includedInPremium: "Option",
  46. },
  47. {
  48. label: "NOM DE DOMAINE",
  49. includedInStandard: "Option",
  50. includedInPremium: "Option",
  51. },
  52. {
  53. label: "SITE INTERNET",
  54. includedInStandard: true,
  55. includedInPremium: true,
  56. },
  57. {
  58. label: "STATISTIQUES",
  59. includedInStandard: true,
  60. includedInPremium: true,
  61. },
  62. {
  63. label: "FONCTIONNALITÉ DU RÉSEAU CMF",
  64. includedInStandard: true,
  65. includedInPremium: true,
  66. },
  67. {
  68. label: "SAUVEGARDE",
  69. includedInStandard: true,
  70. includedInPremium: true,
  71. },
  72. {
  73. label: "EXTRANET UTILISATEURS",
  74. includedInStandard: "75 comptes",
  75. includedInPremium: "150 comptes",
  76. },
  77. {
  78. label: "ESPACE DE STOCKAGE",
  79. includedInStandard: "100 Mo",
  80. includedInPremium: "1 Go",
  81. },
  82. {
  83. label: "PAGE DU SITE INTERNET",
  84. includedInStandard: "Restreint",
  85. includedInPremium: "Illimités",
  86. },
  87. ];
  88. </script>
  89. <style scoped>
  90. .v-container{
  91. width: 95%;
  92. margin-right: auto;
  93. margin-left: auto;
  94. }</style>