Vue Form Validations with Vest

Rate this content
Bookmark

Forms on the web have always been with us, yet it still feels like you always have to fight them to make validation work as you planned - and even with the significant improvements modern day libraries and frameworks give us, maintenance is mostly a hassle.

Vest is a new breed of form validations framework. It draws its syntax and style from Unit Testing frameworks like mocha or Jest (hence the name), which brings the elegance and declarative nature of these frameworks to the world of form validation, greatly reducing the overhead it takes to write, maintain and reuse validations in your JS apps.

21 min
20 Oct, 2021

Video Summary and Transcription

VEST is a form validation framework inspired by unit testing libraries. It provides a structured approach to form validation, making maintenance and reuse easier. VEST supports multiple validations per field, warning validations, interdependent field validation, async validations, and memoization. It is lightweight and can be integrated with various frameworks and libraries. The speaker is open to collaboration and contributions for adding a reactive interface using VUE's reactivity model.

Available in Español

1. Introduction to VEST and the Motivation Behind It

Short description:

I'm Aviatar, a front-end engineer at Facebook and the author of VEST, a form validation framework inspired by unit testing libraries. Today, I'll show you how VEST can improve form validations in Vue apps. Before diving into VEST, let me explain the motivation behind it. Previously, I struggled with the lack of structure when adding validations to forms. This made maintenance and reuse difficult. Inspired by unit tests, I developed a structure for form validation that allows for easy description of desired behavior and flexibility for different features. Let's explore this structure with an example validating the username field.

Hey! I'm Aviatar. I'm a front-end engineer at Facebook, and I'm the author of VEST. VEST is a form validation framework inspired by unit testing libraries like Mocha or Jest. So, if you've done even a little unit testing in your career, I think you'll feel very much at home working with VEST.

Today, I want to show you how we can use VEST to improve the way we write form validations in our Vue apps. But before I start speaking about VEST itself, I want to mention a little the motivation behind VEST and what led me to write VEST to begin with.

In my experience writing forms and building forms before using VEST, I had a big problem of lacking structure. So, I was trying to add validations to the form, and I wasn't sure where I should put the validation logic. Should I put them inside a change handlers? Should I put them somewhere in my feature in a shared library? How do I write it? How do I avoid it being too specific to my feature? And there is no specific structure that the validations should follow.

So I ended up making it work by writing it somewhere between my handlers and my feature. But then when I wanted to make changes and maintain the feature, like adding more fields in the feature, or making fields dependent on one another or even removing a field, it was very, very hard because everything was tied down to the feature. And because everything is very specific to the feature, it was very hard as well to make use of it again. So to take it and use it in a different form or a different feature, like the password field in both reset password and sign in.

So all these led me to think of a solution. And a couple of years back when I was working with a previous employer, we just started writing unit tests for our apps. And I saw that patterns that unit tests have, that we have that testing suite with describes and expect. And it looked very similar to the way I was thinking about form validation in my mind. Because unit tests are declarative by nature, so you are able to describe exactly what you want to happen. And along with that, they are very good at expressing what's there compared to how it should be. So you put a function in a test, and the same goes for form validation.

So I want my values, my data, to run through some tests. And it all seems very relevant to the world of form validation. Of course, it's not exactly the same, and the terminology is different, and we don't run unit tests in production. But with some design adjustments, I was able to come up with something that's still very similar to the way we write unit tests, and still be very relevant for form validation. And the structure I came up with is this. We first create a suite that's separate from our feature code, and add a callback to it. Inside the callback, we add our tests, similar to unit test tests, with an extra field or an extra parameter, which is the name of the field that we're validating. So in this case we have test, and we're testing that username. And then we have the error that the user will get in case of a validation failure. So username must be at least three characters.

2. Using VEST with a Real Live Vue App

Short description:

Inside the callback of that test, we have our assertions. I want to show you how it works with a real live Vue app. This is our app, a basic app without any validation yet. I added input components for styling, class names for error, warning, and success, props for errors and warnings, a loading spinner, and an empty validate function. Let's create our suite and import create from vest.

And inside the callback of that test, we have our assertions. So similar to assert or expect, we enforce the data.username is longer than two, or whatever validation we have there. And I want to show you how it works with a real live Vue app.

Just note, I'm using here, the options API, but it could work with the composition API just as well. No changes whatsoever to the best code.

So this is our app. It's a very basic app without any validation at all yet. And I added some input components that are there just for styling. I added a few class names. So I added a class name for error. It turns it red. Let me just refresh. Okay, it turns it red. I added a class name for warning. That turns it orange and one for success. That turns it green. And along with that, I also added a few props. So one for errors. And it takes an array of strings. And when displayed, it shows the error on the field. And same for warnings. I also added a loading spinner, because we're going to do some async validations later down the line. So loading true. And we're going to see a spinner. So that's all we have already here. We also have the validate function, which is empty. It takes the name and the value from the field that we're validating. And let's create our suite. So source. And let's import create from vest.

3. Using VEST for Form Validation

Short description:

I'll create a suite using the create function and store it in the constant 'suite'. Then, I'll import this suite into my form and use it inside the validate function. The validation result will be stored in the 'res' variable and updated whenever there's a change in the validate function. Now, let's write our first test for the username field, checking that it is required. We'll also write tests for the password field, specifying the minimum length requirements. When we refresh and start typing, we'll see the validation messages for both fields.

And I'll do const suite equals create. And I'll export default that suite. So export default suite. Now import this suite into my form. So import suite from suite. And I'll use it inside my validate function. So suite, and I'll call it. Now I'll store the validation result in our data. So res equals suite.get. And I'll also update it whenever there's a change in the validate function. So this.res equals the result from suite. And let's take the value and the name and also pass down the this.input. So let's pass everything. And the name of the field that we're validating.

Back to the suite, let's write our first test. So first let's take the data, which is empty at the moment. And let's take test and enforce. Now writing the first test is very simple. Let's test that username and say that if it fails, the user will say username is required. And then enforce the data.username is not empty. If I go back to the form and I already have this here, I'll just go to the input and do errors equals and then res.getErrors or the field username. And if I start typing and then remove everything, I'll see that username is required. Which is what we wrote.

Let's duplicate this for password as well and let's go to write the rest of our test. So another one for username and we can have multiple tests for the same field and they do not have to be in the same function, which makes it very easy to understand what's going on. So username must be at least three characters long longer than two. Let's do the same for password. And let's say that password must be at least five characters. So longer than or equals five. And now if I refresh and start typing, we'll see that we get the validation message for username and also for password.

4. Improving Validation and Styling

Short description:

The password field starts lighting up whenever I type inside username, but we want it to only fire up for itself. We can achieve this by using the 'only' function to specify the fields we want to validate. Additionally, we can use the 'class names' utility to style our app based on the validation state. For example, we can set the class names to 'success' for valid inputs, 'error' for invalid inputs, and 'warning' for inputs with warnings. This allows us to provide visual feedback to the user. We can also use the 'warn' function to handle warning validations, such as notifying the user about weak passwords without blocking form submission.

Now, if you noticed it, the password field starts lighting up whenever I type inside username, which is not the expected result. We actually want it to only fire up for itself. And this is really easy. Let's just import only and only allows us to specify the fields that we want to be validated at any given time. So let's run only. And remember, we're passing the name of the field that we're validating to the suite. We can take it here, current field, and let's pass it to only. And now whenever I type inside any of the fields, only it will light up.

Now let's add some color. Vest is not a UI framework, but it does give you some UI utilities, so you can style your app. Let's do import class names from vest class names. And what the class names utility does is it gives you an ability to specify which class names should appear in which validation state. So I'll do a computed value, and I'll use... And I'll return class names and pass it the validation result. And also the classes that I want to appear at any stage. So if it's valid, I want it to be success. And if it's invalid, I want it to be error. And if it's warning, I want it to be warning. So I can take now the class names and put it in the class. So class equals CN, that's our property, with the field Username. And if I start typing, we'll see that it's red and then it's green. So let's do the same for Password. And this is happening the same.

Now what if we want some warning fields? So for example, Password Strength shouldn't block the form from submitting, but it should notify the user there's a problem. Let's do it. We have the feature of warning validations. We just have to call the warn function from Vest. So let's test the password. And let's say that it's weak, that it has no numbers. Password is weak.

5. Using VEST for Advanced Validations

Short description:

Maybe add a number and let's do Matches, which takes a regular expression. And let's do, it has 0 to 9 in it. And now, all I have to do is just add warn to it, which says this is a warning field. Sometimes we want to also have async validations. For example, if the username is already taken, we want to check that instead of letting the user submit and only then tell them. Let's have a mock function that implements a does user exist logic. And all we have to do now is write a test that returns does user exist. Now if I start typing here, some user, you'll notice that nothing happens. And this is because best needs to report back to the form that the validation completed. So all we have to do and maybe first let's add a spinner. So we know what's going on, let's add a new data property. So username loading equals false. This is the default. And now let's do if name so if the field that we're validating is username, let's do this dot username is loading equals to true.

Maybe add a number and let's do Matches, which takes a regular expression. And let's do, it has 0 to 9 in it. And now, all I have to do is just add warn to it, which says this is a warning field. And as I type, you'll see that after five characters, it becomes orange, but we're not seeing the validation message. And this is because we're only taking the validation errors. So we have to duplicate this and say, Get Warnings.

And if I start typing now, Password is weak. Maybe add a number. Cool. Sometimes we want to also have async validations. For example, if the username is already taken, we want to check that instead of letting the user submit and only then tell them. And all we have to do in VEST is just return a promise or an async test inside our suite.

So I'll just do it. Let's have a mock function that implements a does user exist logic. So async function does user exist. It takes a username. And if the username equals some user, we should throw an error, throw new error. And also let's make it wait for a second, I'll get the wait npm package. So a wait, wait for one second. And all I have to do now is write a test that returns does user exist. So test username, username already taken. And I just need to return does user exist and call it with data dot username. Now if I start typing here, some user, you'll notice that nothing happens. And this is because best needs to report back to the form that the validation completed. And here it's waiting for a second. So all we have to do and maybe first let's add a spinner. So we know what's going on, let's add a new data property. So username loading equals false. This is the default. And now let's do if name so if the field that we're validating is username, let's do this dot username is loading equals to true.

6. Using VEST for Async Validation

Short description:

To cancel the loading spinner when validation completes, use the 'done' function to get the validation result. Set 'username loading' to false to cancel the spinner. Async validation can be implemented by using 'sweet.get' to get the current validation result. That's all you need to do for async validation.

And now just to make it work, let's do loading equals to his name is loading. So just to see okay, we have the spanner, and now we need to cancel it when the validation completes. So let's do we start done, open this dot res dot done, done is a function that gives us a callback when the validation is complete. And all we have to do is this dot res equals sweet dot get gives us the current validation result. And also let's cancel username is loading. So these that username loading equals false. So now if I type if I type some user, we're supposed to get usernames already taken. And that's it. That's all you have to do for async validation.

7. Improving Async Validations

Short description:

But of course, it can be improved. We can tell VEST to skip a validation when it is already failing. By using the 'skip when' function and specifying the criteria, such as the validation result having errors for the username field, we can prevent unnecessary async validations. This ensures that the validation is only triggered when needed, improving performance.

But of course, it can be improved. Because if you notice, you'll see that I start typing. Even though the validation is failing for the shorter validation, for example, the must be at least three characters, we're still showing the spinner, which means we're still going out to the server, which is not a great idea, because it could be a very costly async validation. And to prevent that, we can just tell best to skip a validation upon some criteria. In this case, whenever the validation is failing to begin with. So in our case, let's get skip when. And it allows us to tell whenever we want to skip something and we're taking a skip when and our criteria is the sweet dot GET, which gives us the validation result has errors for username. So whenever username is failing, don't run what's up, whatever's inside that callback. And if I do this, OK, let's try typing something. E, A, no spinner, L, there's a spinner, so we're not validating the async validation before it's ready.

8. Handling Costly Validations with Memoization

Short description:

Now let's do some user again and it's correct, but now I'm adding another character and we went to the server and now it's valid and I'll remove it. And we went to the server again, even though we do know that the validation is already failing because we've already seen it failing for the same user. Again, it could be a costly validation and we can handle it with memoization within VEST. And all we have to do is take our test and do test.memo and then just add our dependencies. So in our case, we want to memoize it by the username, so data.username. So as long as username doesn't change or as long as username is repeated, the validation will give us immediately the same response without going to the server. And this is the example. So some user, we're going to the server, I'm adding a character, and if I remove it, you'll see that we got an immediate response. And now you'll see that the form is valid, everything is okay, I just want to add one more thing. I want to disable submission before the form is fully valid. And this is easy to do, all we have to do is go to our template again, and then add disable to our submit button, and say we want to disable when res is not valid, so not res is valid. And let me see, oh, disabled, okay. And now it's disabled, and if I write something, some user one, perfect, and password, example one, and just notice that warning does not prevent the form from submission, a warning not qualified for invalid, which is just what we're after. And just like that, within, I think, six lines of logic within Vue, we were able to validate this form completely with many, many complex validations, which is pretty awesome, I think.

Now let's do some user again and it's correct, but now I'm adding another character and we went to the server and now it's valid and I'll remove it. And we went to the server again, even though we do know that the validation is already failing because we've already seen it failing for the same user. Again, it could be a costly validation and we can handle it with memoization within VEST. And all we have to do is take our test and do test.memo and then just add our dependencies. So in our case, we want to memoize it by the username, so data.username. So as long as username doesn't change or as long as username is repeated, the validation will give us immediately the same response without going to the server. And this is the example. So some user, we're going to the server, I'm adding a character, and if I remove it, you'll see that we got an immediate response. And now you'll see that the form is valid, everything is okay, I just want to add one more thing. I want to disable submission before the form is fully valid. And this is easy to do, all we have to do is go to our template again, and then add disable to our submit button, and say we want to disable when res is not valid, so not res is valid. And let me see, oh, disabled, okay. And now it's disabled, and if I write something, some user one, perfect, and password, example one, and just notice that warning does not prevent the form from submission, a warning not qualified for invalid, which is just what we're after. And just like that, within, I think, six lines of logic within Vue, we were able to validate this form completely with many, many complex validations, which is pretty awesome, I think.

9. Features and Benefits of VEST

Short description:

VEST has several features, including validation of changed fields upon interaction, multiple validations per field, warning validations, interdependent field validation, async validations, memoization, and structured validations. Despite its complexity, VEST is lightweight, less than six kilobytes when mini-zipped, making it one of the smaller yet most powerful validation frameworks available.

And, we've seen some of the features that Vest has, but not all of them. There are a few more, and there are validation of changed fields upon interaction, which we've done. Multiple validations per field, warning validations. We can have interdependent field validation, so we can have tests that dependent on one another. We have async validations, and we can also memoize them. We can group tests and nest tests within groups, for example, when we have a multi-step form. Then, in general, we have structured validations. These are some of VEST's features, but not all of them. Even with all those features and all this complexity, VEST is still less than six kilobytes when mini-zipped. I think it makes VEST one of the smaller yet most powerful validation frameworks out there.

QnA

Excitement, Questions, and Integration

Short description:

I am really excited working about VEST. I enjoy writing form validations with VEST. If you're excited about VEST today, feel free to ping me on Twitter, or even go to the GitHub page, or even submit a PR, improving the docs for Vue, or even improving and adding some code. Thank you very much for joining me today. Let's move on to some questions. First question, how does the API cope with async validation logic? For example, validation relies on some other async API like HTTP requests. You just pass an async function or return a promise. If that function rejects or throws an error, then a validation fails. Next question, does VEST support JSON schema validation or does it have integration with JSON schema validators, such as AJV? VEST is not a schema validation library, but it does integrate with anything. Enforce, the assertion function inside VEST, has very extensive schema validation functions.

I am really excited working about VEST. I enjoy writing form validations with VEST. I thank you for joining me today. If you're excited about VEST today, feel free to ping me on Twitter, or even go to the GitHub page, or even submit a PR, improving the docs for Vue, or even improving and adding some code. I really appreciate it. Thank you very much for joining me today. Have a great day.

But first, let's look at the results of the poll question he asked, which was about our coffee consumption. It would appear that all of us, or the vast majority of us, have a caffeine problem, myself included. I think Amitar and I had the same answer. If you would like to share what our problem is. Yeah. So, it was not about your caffeine problem. It was about my caffeine problem, just to clarify. And yes, my option was the third one, while sure, drink coffee, definitely. So yeah, I was just trying to make myself comfortable about my consumption, to make it clear. Well, you're in great company because I'm great company and that's what matters.

Okay, let's move on to some questions. First question, I'm sorry. I don't want to butcher your name, but your initials are J H. How does the API cope with async validation logic? For example, validation relies on some other async API like HTTP requests. So this is something that I did show in my presentation. The question was probably asked before that part. And all you have to do is just pass, instead of just passing a validation function you just pass an async function or return a promise. And if that function rejects or throws an error, then a validation fails and it works exactly the same as it does with any other sync validation. Nice. Okay, next question from Saffity. I'm sorry if I'm butchering names, I really am. Does VEST support JSON schema validation or does it have integration with JSON schema validators, such as AJV? So VEST, as a general concept, is not a schema validation library, even though it does integrate with anything. And just as a quick note, Enforce, the assertion function inside VEST, has very extensive schema validation functions.

Using Test Patterns and Challenges in Writing VEST

Short description:

The recommended way to validate forms is via different tests for each field. Schema validations can also be used in tests. Writing VEST was challenging as it required adapting patterns from a different world. Unit tests are stateless, so an internal state was implemented in VEST to retain validation results for each field.

It is not the most recommended way because the way I think forms should be validated are via different tests for each field, but these are supported. And if you are using schema validations in your forms, then yeah, of course you can actually use the same schema validations inside your test. So as long as it either throws an error or returns a boolean, you can put it inside your validation test.

Nice. The next question from Organized Chaos. I like the people who have normal words. Anyway, the question is, very interesting using test patterns for form validation. It seems pretty doable. Have you found any gotchas in writing the tests or other pitfalls? Yes, plenty of them. So, writing BEST was not simple because I was trying to take some patterns that come from a completely different world into the world of form validation. And the main issues I was facing is that unit tests are basically stateless. So every time you run them, all the state gets generated over and over again. And what I had to do to make BEST actually worthwhile and not just waste your time managing your own state is have an internal state that retains the validation results for each of the fields that get validated. And then you only have to do the nice part of writing the custom validations.

Integration with Nuxt, Beautify, and Vuex

Short description:

VEST is a versatile framework that can be integrated with any framework or library, such as Nuxt, Beautify, and Vuex. It takes input, returns a validation result, and can be used in various contexts. Migrate your validations without changing your code to integrate with a specific framework.

Okay. Next question is from Anonymousio. I use Nuxt, Beautify, and Jest. If I use BEST, how about integrating Nuxt, Beautify, and Vuex and all the libraries? Wow, that was a lot of name dropping. Nuxt, Beautify, and Vuex, and all the libraries. Mm-hm. And all of them. Actually, because VEST is a framework that takes a value, takes some input and returns a validation result, you can integrate it with anything and it's intentionally not tied into one specific framework or any specific library, so it's very versatile and you can use it in many different concepts and aspects and in many different contexts. So you can use it with Nuxt, without Nuxt, or you can use it with Vuex, or if you're coming over from React, you can just migrate your validations and not have to change things just to integrate with a specific framework.

VEST Support for File Type Validation

Short description:

VEST does not support file type validation or other business-specific validations. It avoids bloat and allows users to make their own decisions regarding these validations. However, VEST provides the flexibility to extend its assertions with custom frameworks and libraries, allowing integration with existing file type validation solutions.

Okay, and we actually have a question from our wonderful question moderator today, so shout out to all the hard work from... I am going to butcher this. I'm so sorry. But the question is, does VEST support file type validation or do you plan on applying it? Oh, yeah, that's a good one. And this is something I've seen in many other frameworks as well or libraries for validation, and they typically, some of them do, but they typically do not support some kind of validations. VEST is one of them, of the frameworks that do not support these validations. And it's true for file type or any file measurement validation, it's true for email validation, and it's true for some other ones. And the reason is that these are very business-centric and business-specific. And each time you try to validate something that's specific to any file size, any file type, VEST would have to know a lot of your business in order to just make those decisions if it's valid or not. And even if not, it would have to come with a lot of bloat that many users would not need. The same for email. I've been at places where, for example, email aliases are not allowed, like the plus after your username, and some places where it's only allowed for the own company's email addresses. And VEST cannot know this. So it gives you the decisions to make regarding business specific validations. And the nice thing about VEST is that the assertions can be extended with custom frameworks and custom libraries. So for example, if you use a library that already does handle file type validation, you can just do enforce dot extend, and give it that input, and it will just work as any other validation inside of VEST. Very nice.

VEST's Reactive Interface and Collaboration

Short description:

VEST currently has a functional interface, but I am interested in adding a reactive interface that works with VUE's reactivity model. I would appreciate community contributions and collaboration on this. If you have knowledge or interest in VUE's reactivity model, let's connect and work together.

Okay. Next question is VEST has a functional interface, and usually when working with VUE things are expected to be more reactive. Does VEST have a reactive interface? Oh, nice. So I just have to say I'm coming from react background originally, and I think that one of the nicest things about VUE is its reactivity model. I think it's really nice how things update and how things work this way. The truth is that I do want to add a reactive interface to VEST. But it takes quite a lot of research, and I think it's something that VEST should have, or at least a bridge, that would work with VUE's reactivity model. This is something I would love to have some community contributions from. So if you know anything about VUE's reactivity model, or if you just want to learn about and collaborate on it, I'm down. I think this is definitely the right audience for that.

Clearing Validation Cache in VEST

Short description:

VEST provides multiple ways to clear the validation cache, including discarding the suite and generating a new one, using the suite.reset function to wipe all state, or using the suite.remove function to remove a specific field. These options are rarely needed, but they offer flexibility when required.

Another question from OrganizedChaos, you mentioned you keep track of state internal to VEST. Have you exposed ways to clear that programmatically? Yes. Okay, I'll make it a bit longer. So VEST has multiple ways to clear the validation cache. So one is you can just discard out the suite and just generate a new one, and you'll get a clear state. So just create a new suite. The other two ways are basically, you can either do suite.reset, this is a function that when you call it, all the state gets wiped. And the other one, if you, for example, want to remove a specific field in case you have dynamic validations, like the user added some item and now you have to run validations on it, and then the user removed it, then you can do suite.remove and specify the name of the field that you want to remove, and then this field alone gets removed. Usually you don't have to do either of those, but sometimes you do. And when you do, you have both reset and remove.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Vue.js London Live 2021Vue.js London Live 2021
34 min
Everything Beyond State Management in Stores with Pinia
Top Content
When we think about Vuex, Pinia, or stores in general we often think about state management and the Flux patterns but not only do stores not always follow the Flux pattern, there is so much more about stores that make them worth using! Plugins, Devtools, server-side rendering, TypeScript integrations... Let's dive into everything beyond state management with Pinia with practical examples about plugins and Devtools to get the most out of your stores.
Vue.js London Live 2021Vue.js London Live 2021
20 min
One Year Into Vue 3
Top Content
Vue 3 may still sound new to many users, but it's actually been released for over a year already. How did Vue 3 evolve during this period? Why did it take so long for the ecosystem to catch up? What did we learn from this process? What's coming next? We will discuss these questions in this talk!
Vue.js London Live 2021Vue.js London Live 2021
8 min
Utilising Rust from Vue with WebAssembly
Top Content
Rust is a new language for writing high-performance code, that can be compiled to WebAssembly, and run within the browser. In this talk you will be taken through how you can integrate Rust, within a Vue application, in a way that's painless and easy. With examples on how to interact with Rust from JavaScript, and some of the gotchas to be aware of.
Vue.js London Live 2021Vue.js London Live 2021
24 min
Local State and Server Cache: Finding a Balance
Top Content
How many times did you implement the same flow in your application: check, if data is already fetched from the server, if yes - render the data, if not - fetch this data and then render it? I think I've done it more than ten times myself and I've seen the question about this flow more than fifty times. Unfortunately, our go-to state management library, Vuex, doesn't provide any solution for this.For GraphQL-based application, there was an alternative to use Apollo client that provided tools for working with the cache. But what if you use REST? Luckily, now we have a Vue alternative to a react-query library that provides a nice solution for working with server cache. In this talk, I will explain the distinction between local application state and local server cache and do some live coding to show how to work with the latter.

Workshops on related topic

Vue.js London Live 2021Vue.js London Live 2021
169 min
Vue3: Modern Frontend App Development
Top Content
Featured WorkshopFree
The Vue3 has been released in mid-2020. Besides many improvements and optimizations, the main feature of Vue3 brings is the Composition API – a new way to write and reuse reactive code. Let's learn more about how to use Composition API efficiently.

Besides core Vue3 features we'll explain examples of how to use popular libraries with Vue3.

Table of contents:
- Introduction to Vue3
- Composition API
- Core libraries
- Vue3 ecosystem

Prerequisites:
IDE of choice (Inellij or VSC) installed
Nodejs + NPM
Vue.js London Live 2021Vue.js London Live 2021
117 min
Using Nitro – Building an App with the Latest Nuxt Rendering Engine
Top Content
Workshop
We'll build a Nuxt project together from scratch using Nitro, the new Nuxt rendering engine, and Nuxt Bridge. We'll explore some of the ways that you can use and deploy Nitro, whilst building a application together with some of the real-world constraints you'd face when deploying an app for your enterprise. Along the way, fire your questions at me and I'll do my best to answer them.
Vue.js London 2023Vue.js London 2023
137 min
TresJS create 3D experiences declaratively with Vue Components
Workshop
- Intro 3D - Intro WebGL- ThreeJS- Why TresJS- Installation or Stackblitz setup - Core Basics- Setting up the Canvas- Scene- Camera- Adding an object- Geometries- Arguments- Props- Slots- The Loop- UseRenderLoop composable- Before and After rendering callbacks- Basic Animations- Materials- Basic Material- Normal Material- Toon Material- Lambert Material- Standard and Physical Material- Metalness, roughness - Lights- AmbientLight- DirectionalLight- PointLights- Shadows- Textures- Loading textures with useTextures- Tips and tricks- Misc- Orbit Controls- Loading models with Cientos- Debugging your scene- Performance
Vue.js London Live 2021Vue.js London Live 2021
176 min
Building Vue forms with VeeValidate
Workshop
In this workshop, you will learn how to use vee-validate to handle form validation, manage form values and handle submissions effectively. We will start from the basics with a simple login form all the way to using the composition API and building repeatable and multistep forms.

Table of contents:
- Introduction to vee-validate
- Building a basic form with vee-validate components
- Handling validation and form submissions
- Building validatable input components with the composition API
- Field Arrays and repeatable inputs
- Building a multistep form
Prerequisites:
VSCode setup and an empty Vite + Vue project.
Vue.js London Live 2021Vue.js London Live 2021
115 min
Building full-stack GraphQL applications with Hasura and Vue 3
WorkshopFree
The frontend ecosystem moves at a breakneck pace. This workshop is intended to equip participants with an understanding of the state of the Vue 3 + GraphQL ecosystem, exploring that ecosystem – hands on, and through the lens of full-stack application development.

Table of contents
- Participants will use Hasura to build out a realtime GraphQL API backed Postgres. Together we'll walk through consuming it from a frontend and making the front-end reactive, subscribed to data changes.
- Additionally, we will look at commonly-used tools in the Vue GraphQL stack (such as Apollo Client and Urql), discuss some lesser-known alternatives, and touch on problems frequently encountered when starting out.
- Multiple patterns for managing stateful data and their tradeoffs will be outlined during the workshop, and a basic implementation for each pattern discussed will be shown.
Workshop level

NOTE: No prior experience with GraphQL is necessary, but may be helpful to aid understanding. The fundamentals will be covered.
Vue.js London Live 2021Vue.js London Live 2021
72 min
A Different Vue into Web Performance
Workshop
Solving your front-end performance problems can be hard, but identifying where you have performance problems in the first place can be even harder. In this workshop, Abhijeet Prasad, software engineer at Sentry.io, dives deep into UX research, browser performance APIs, and developer tools to help show you the reasons why your Vue applications may be slow. He'll help answer questions like, "What does it mean to have a fast website?" and "How do I know if my performance problem is really a problem?". By walking through different example apps, you'll be able to learn how to use and leverage core web vitals, navigation-timing APIs, and distributed tracing to better understand your performance problems.