├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── index.html ├── ex ├── 01.md ├── 02.md ├── 03.md ├── 04.md ├── 05.md ├── 06.md ├── 07.md ├── 08.md ├── 09.md ├── 10.md ├── 11.md ├── 12.md ├── 13.md ├── 14.md └── 15.md ├── img ├── babel.gif ├── build.gif ├── cli.gif ├── components.png ├── computed.gif ├── devtools.gif ├── directives.gif ├── eslint.gif ├── gs.gif ├── loading.gif ├── logo-emoji.png ├── ls-al.png ├── my-app.png ├── networking.gif ├── plugin.gif ├── reactivity.gif ├── serve.gif ├── sfc.png ├── two-way.gif ├── vs-code-dist.png ├── vs-code-project.png ├── vue-coins.png └── watcher.gif ├── package.json └── slides ├── Component System.pdf ├── Declarative Rendering.pdf └── vue-principiantes.pdf /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: ianaya89 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.DS_Store 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 @ianaya89 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Workshop de Vue.js Para Principantes 2 | 3 | > 👨🏫👩🏫🇪🇸 Vue.js es una de las mejores alternativas en el mundo MV* peleando con gigantes de la industria como React y Angular. En este workshop vas a aprender la simpleza y el poder de este framework que combina lo mejor de ambos mundos. Te voy a enseñar las bases del framework progresivo que te permite crear aplicaciones simples o complejas de manera muy fácil. 4 | 5 | > 🚨 Esta es una nueva version del workshop, podes mirar la version anterior en este [link](https://github.com/ianaya89/workshop-vuejs/tree/v1.0.0). 6 | 7 | 8 |
9 |
10 |
35 | {{ message }} 36 |
37 |38 | El texto esta oculto 39 |
40 |52 | {{ message }} 53 |
54 |55 | El texto esta oculto 56 |
57 | 58 |59 | {{ message }} 60 |
61 |103 | {{ message }} 104 |
105 |106 | El texto esta oculto 107 |
108 | 109 |110 | {{ message }} 111 |
112 | 113 |154 | {{ message }} 155 |
156 |157 | El texto esta oculto 158 |
159 | 160 |161 | {{ message }} 162 |
163 | 164 |18 | {{ name }} 19 |
20 |93 | {{ name }} 94 |
95 |Cargando...
110 |Cargando...
121 |Simbolo | 125 |Nombre | 126 |Precio | 127 |
---|---|---|
{{ a.symbol }} | 132 |{{ a.name }} | 133 |$ {{ parseFloat(a.priceUsd).toFixed(2) }} | 134 |
Cargando...
59 |Simbolo | 63 |64 | | Precio | 65 |
---|---|---|
{{ a.symbol }} | 70 |{{ a.name }} | 71 |$ {{ parseFloat(a.priceUsd).toFixed(2) }} | 72 |