¡Aprenda Vue.js en este curso gratuito! ? ✨

Hagamos algo Vueseful

Antes de llegar al artículo, solo quiero compartir que estoy creando un producto y me encantaría recopilar algunos datos sobre cómo servir mejor a los desarrolladores web. Creé un breve cuestionario para consultar antes o después de leer este artículo. Por favor, compruébalo, ¡gracias! Y ahora, volvamos a nuestra programación habitual.

¡Hola Internet!

Es posible que no sepas qué es Vue, y eso está bien, y diablos, es posible que no sepas quién soy, ¡definitivamente no! Soy Zaydek, y soy un diseñador gráfico y programador experimentado. ¡Acabo de lanzar un curso gratuito para ayudar a los desarrolladores a aprender algo de Vue! Estoy aquí para informarle sobre todas las posibilidades que ofrece el aprendizaje y el uso de este increíble marco de trabajo de código abierto.

En este artículo, detallo cómo pensar en Vue. También repito los componentes básicos necesarios para comenzar a programar sitios web estáticos y dinámicos con un orden de magnitud más fácil que con JavaScript vanilla. ? Vue es tanto un paradigma para escribir aplicaciones web como una guía idiomática para aprender y programar JavaScript.

También enseño el JavaScript? ✨ necesario para comenzar en el curso de Vue que acabo de lanzar. Aprenda Vue de los conceptos básicos y también cómo construir algunas cosas. ¡Haz clic aquí para inscribirte gratis!

El curso se imparte en Scrimba.com, que es un sitio web nuevo e interactivo para aprender y compartir cómo codificar . Los screencasts se pueden interrumpir y editar, lo que hace que el aprendizaje sea activo y divertido de experimentar.

Vue no es una cosa

Se puede pensar en un marco como una caja de herramientas de uso general, equipada con herramientas que resuelven diferentes problemas pero que todas juntas ayudan con alguna tarea. Esa tarea, en lo que respecta a Vue, es crear aplicaciones web idiomáticas y fáciles de mantener con facilidad, de verdad, ¡y divertirse mientras lo hacemos!

Pongamos las cosas en perspectiva. Vue puede ser tan simple como una etiqueta de script que podemos incluir en nuestros sitios web para convertirlos en aplicaciones web. Pero también puede ser un ecosistema completo que se basa en un proceso de construcción para facilitar la ingeniería de aplicaciones web complejas y potentes.

En este artículo y en el curso, me enfoco en aprender los conceptos centrales que presenta Vue y asumo que no tengo conocimiento de la línea de comandos o de lo que es un proceso de construcción.

Que cubre el curso

El curso consta de tres partes:

  1. aprender el JavaScript mínimo necesario para comenzar con Vue
  2. aprender los conceptos básicos de Vue, y
  3. una descripción general de dos ejemplos más avanzados (dos aplicaciones web lindas y divertidas que hice: Schrödinger's Div? y? Color Picker)

Lo que me encanta de Vue es que propone algunas ideas interesantes sobre cómo pensar y cómo crear aplicaciones web. Hay algunas ideas que creo que son muy interesantes, aunque esto no sugiere todo lo que Vue puede hacer:

  • separando los datos del DOM
  • JavaScript idiomático
  • plantillas y HTML basado en componentes
  • gestionar el manejo de eventos

Pero antes de que podamos entrar en eso, primero veamos cómo conectar Vue a través de una etiqueta de script simple a un sitio web:

Puede pensar en una aplicación web como si estuviera dentro o encima de un sitio web. Entonces, una aplicación web comienza su vida en el

p">, where from inside the script tag it is plugged in via new Vue({ el: "#app" }). That is how we create a relationship from the JavaScript to the HTML (where el is short for element).

This is the first of what are known as options, and Vue supports a lot of options, such as data and methods. These are analogous to variables and functions for our web app.

Note: Vue comes in two flavors: ? there’s both the development and production version. The development version emits detailed error messages and warnings to support developers while working in Vue. The production version is optimized for speed and size.

In addition to all of this, there’s an official Chrome extension that makes managing the app’s state and debugging painless.

Separating the data from the DOM

As mentioned earlier, one great suggestion Vue proposes is separating the data from the DOM. DOM stands for document-object-model, which can be thought of as the tree of elements that compose our website. The text in between the opening and closing elements is what I’m referring to as the data. In Vue we don’t hardcode it — we separate it and put in the aforementioned data object from inside of our Vue instance.

This idea is also referred to as the Virtual DOM. This might seem insignificant, but the truth is that having the data in one place means that we know how and where to update it. And because Vue is reactive, whenever we update said data, that change gets propagated throughout our web app. Because of this relationship, data can be thought of as much more alive in Vue than in vanilla HTML.

These ideas are explored in the third screencast.

Idiomatic JavaScript

For me, Vue makes JavaScript a language worth learning, because it makes sense of JavaScript. What I mean is that from inside of a new Vue({ ... }) is how and where we learn to wrangle JavaScript. Variables are key-value pairs attached to the data object as shown above, and functions are attached as key-value pairs attached to a second object: methods. And both objects data and methods are optional — remember, these are our web app’s options.

But Vue goes a lot further: Vue features a lot of options that come in the form of objects we hook into in our Vue instance. Altogether, this resembles an idiomatic guide and approach to programming in JavaScript. Therefore, few architectural decisions are left for the programmer. This means that writing and reading Vue has a sort of coherence and elegance that makes it easier to pick up than deconstructing how a vanilla JavaScript app works.

These ideas are explored in the fourth screencast.

Templating HTML

Most people wouldn’t consider HTML a programming language. But I think a reasonable definition of the purpose of a programming language is this: to interpret and transform data, such as reading and compiling source code.

Given Vue’s attributes, such as v-for, v-if, and so on, for me HTML begins to resemble a programming language with control-flow. This means that we can better control the flow of our program’s data (for example, our website’s content or what I keep calling the data).

For what it’s worth, templating frameworks, like Jekyll and Hugo, were created to aid developers with authoring static-based websites using a kind of control-flow. As nice as this is, it’s limited to static websites, because these frameworks compile to HTML rather than interpret HTML.

Having access to realtime control-flow, like for-loops and if-statements, means that Vue can do a lot more and do it in realtime. This is one of the big differences between websites and web apps (static versus dynamic content).

These ideas are explored in the fifth screencast.

Components and props

Something that took me far too long to appreciate is the difference between variables and properties. Variables store data, whereas properties are variables attached to an object in JavaScript. So components can be thought of as HTML mixins. A what? A mixin is like a function, but instead of returning data, it mixes-in data into the document. For example, it writes HTML for us so we don’t have to repeat ourselves!

And this isn’t a small thing. The benefit of components and props in Vue means we can refactor entire HTML code blocks into one-liners that can be customized via props. This means we can now author custom elements that expose access to their internals without overcomplicating the public HTML. This is a big win for both maintainable and readable code.

These ideas are explored in the sixth screencast.

Managing event-handling

While everything we’ve talked about so far is fascinating, it doesn’t speak to user-interaction, which is one of the key differences between a website versus a web app. A website conventionally means something that is more-or-less static and isn’t designed or intended to interact with the user much, outside of perhaps collecting data. In an actual web app, something reminiscent of a native app, interaction is paramount. ? This idea is also referred to as a dynamic website or web app.

Since Vue is both a framework and an ecosystem, it has idiomatic solutions for this, too. The simplest one that I teach in the course is the @click="function()" handler which we plug into an element as an HTML attribute. This simple snippet gives us a means to interact with our data, as simple as an attribute that we plug into an element. This means that we can defer to JavaScript and not HTML or CSS for rich user-interaction.

These ideas are explored in the seventh screencast.

There’s a lot more to learning Vue, so I wrote two more articles on the subject matter. Please, after this article, have a look!

Vue makes the web make sense

Before Vue, I was acquainted with HTML and CSS. I was comfortable enough to make some alluring websites, but nothing more. I explored some frameworks (like those I discussed in this article concerning static compilation), and peered into Angular and React, but I didn’t get the right feeling when exploring those. What I wanted was something lightweight and intuitive, and I believe I’ve found that with Vue.

In the end, it doesn’t matter which tools we use if we can create what we set out to build. But the thing is, it’s hard to separate the tools from the thinking used to build a product or service. This is both a good and bad thing. On the one hand, it can make us narrow-minded. But on the other end of the spectrum, the tools we use can also serve as a teaching instrument for learning new and interesting ideas. I love tools that can’t help but teach me at the same time, and I couldn’t recommend Vue more for this reason!

So please, go out into the beautiful world and learn you some Vue! You can(!) make amazing things and even change people’s lives, even your own. And if it helps, try the free course!