From 8898108a5aafdeae91648bae89079aec59315743 Mon Sep 17 00:00:00 2001 From: lesterbx Date: Wed, 15 Nov 2017 23:38:38 +0100 Subject: [PATCH] Added spanish documentation for Transfer, Transition and Tree --- examples/docs/es/transfer.md | 59 +++++++------- examples/docs/es/transition.md | 20 ++--- examples/docs/es/tree.md | 145 ++++++++++++++++----------------- 3 files changed, 112 insertions(+), 112 deletions(-) diff --git a/examples/docs/es/transfer.md b/examples/docs/es/transfer.md index be22b6330..510299b33 100644 --- a/examples/docs/es/transfer.md +++ b/examples/docs/es/transfer.md @@ -72,8 +72,8 @@ ## Transfer -### Basic usage -:::demo Data is passed to Transfer via the `data` attribute. The data needs to be an object array, and each object should have these attributes: `key` being the identification of the data item, `label` being the displayed text, and `disabled` indicating if the data item is disabled. Items inside the target list are in sync with the variable binding to `v-model`, and the value of that variable is an array of target item keys. So, if you don't want the target list be initially empty, you can initialize the `v-model` with an array. +### Uso básico +:::demo Los datos se pasan a Transfer a través del atributo `data`. Los datos tienen que ser un array de objetos, y cada objeto debe tener estos atributos: `key` que será el identificador del item, `label` que será el texto a mostrar, y `disabled` que indicará si el elemento esta desactivado. Los items dentro de la lista destino están sincronizados con la variable asociada a `v-model`, y el valor de esa variable es un array de claves de los elementos de la lista destino. Así que si no quieres que la lista destino esté vacía inicialmente puedes inicializar el `v-model` con un array. ```html