@@ -2,7 +2,8 @@ import type { DefaultTheme, LocaleSpecificConfig } from 'vitepress'
22
33export const META_URL = ''
44export const META_TITLE = 'Vue Test Utils'
5- export const META_DESCRIPTION = 'La librairie officielle de tests unitaires pour Vue.js 3'
5+ export const META_DESCRIPTION =
6+ 'La librairie officielle de tests unitaires pour Vue.js 3'
67
78export const frConfig : LocaleSpecificConfig < DefaultTheme . Config > = {
89 description : META_DESCRIPTION ,
@@ -12,13 +13,13 @@ export const frConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
1213 [ 'meta' , { property : 'og:description' , content : META_DESCRIPTION } ] ,
1314 [ 'meta' , { property : 'twitter:url' , content : META_URL } ] ,
1415 [ 'meta' , { property : 'twitter:title' , content : META_TITLE } ] ,
15- [ 'meta' , { property : 'twitter:description' , content : META_DESCRIPTION } ] ,
16+ [ 'meta' , { property : 'twitter:description' , content : META_DESCRIPTION } ]
1617 ] ,
1718
1819 themeConfig : {
1920 editLink : {
2021 pattern : 'https://github.com/vuejs/test-utils/edit/main/docs/:path' ,
21- text : 'Suggest changes to this page' ,
22+ text : 'Suggest changes to this page'
2223 } ,
2324
2425 nav : [
@@ -45,7 +46,10 @@ export const frConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
4546 text : 'Les Bases' ,
4647 items : [
4748 { text : 'Pour commencer' , link : '/fr/guide/' } ,
48- { text : 'Cours rapide' , link : '/fr/guide/essentials/a-crash-course' } ,
49+ {
50+ text : 'Cours rapide' ,
51+ link : '/fr/guide/essentials/a-crash-course'
52+ } ,
4953 {
5054 text : 'Rendu conditionnel' ,
5155 link : '/fr/guide/essentials/conditional-rendering'
@@ -54,7 +58,10 @@ export const frConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
5458 text : 'Tester les évènements émis' ,
5559 link : '/fr/guide/essentials/event-handling'
5660 } ,
57- { text : 'Tester les formulaires' , link : '/fr/guide/essentials/forms' } ,
61+ {
62+ text : 'Tester les formulaires' ,
63+ link : '/fr/guide/essentials/forms'
64+ } ,
5865 {
5966 text : 'Passer des données aux Composants' ,
6067 link : '/fr/guide/essentials/passing-data'
@@ -88,13 +95,19 @@ export const frConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
8895 } ,
8996 { text : 'Tester v-model' , link : '/fr/guide/advanced/v-model' } ,
9097 { text : 'Tester Vuex' , link : '/fr/guide/advanced/vuex' } ,
91- { text : 'Tester Vue Router' , link : '/fr/guide/advanced/vue-router' } ,
98+ {
99+ text : 'Tester Vue Router' ,
100+ link : '/fr/guide/advanced/vue-router'
101+ } ,
92102 { text : 'Tester Teleport' , link : '/fr/guide/advanced/teleport' } ,
93103 {
94104 text : 'Composants de Substitution (Stubs) et Montage Partiel' ,
95105 link : '/fr/guide/advanced/stubs-shallow-mount'
96106 } ,
97- { text : 'Tester le Rendu côté Serveur (SSR)' , link : '/fr/guide/advanced/ssr' }
107+ {
108+ text : 'Tester le Rendu côté Serveur (SSR)' ,
109+ link : '/fr/guide/advanced/ssr'
110+ }
98111 ]
99112 } ,
100113 {
0 commit comments