diff --git a/examples/docs/en-US/tabs.md b/examples/docs/en-US/tabs.md index 7aa4c81ab5..6a3b07f673 100644 --- a/examples/docs/en-US/tabs.md +++ b/examples/docs/en-US/tabs.md @@ -109,7 +109,7 @@ You can use `tab-position` attribute to set the tab's position. export default { data() { return { - tabPosition: 'top' + tabPosition: 'left' }; } }; diff --git a/examples/docs/es/tabs.md b/examples/docs/es/tabs.md index f952ae5739..d1ff146334 100644 --- a/examples/docs/es/tabs.md +++ b/examples/docs/es/tabs.md @@ -109,7 +109,7 @@ Es posible usar el atributo `tab-position` para establecer la posición de la ta export default { data() { return { - tabPosition: 'top' + tabPosition: 'left' }; } }; diff --git a/examples/docs/fr-FR/tabs.md b/examples/docs/fr-FR/tabs.md index acc7059306..25177623b1 100644 --- a/examples/docs/fr-FR/tabs.md +++ b/examples/docs/fr-FR/tabs.md @@ -109,7 +109,7 @@ Vous pouvez utiliser `tab-position` pour régler la position des onglets. export default { data() { return { - tabPosition: 'top' + tabPosition: 'left' }; } }; diff --git a/examples/docs/zh-CN/tabs.md b/examples/docs/zh-CN/tabs.md index c8f7bf90a2..4d90741401 100644 --- a/examples/docs/zh-CN/tabs.md +++ b/examples/docs/zh-CN/tabs.md @@ -107,7 +107,7 @@ export default { data() { return { - tabPosition: 'top' + tabPosition: 'left' }; } };