From the course: Vue.js 2 for Web Designers

Unlock the full course today

Join today to access over 22,500 courses taught by industry experts or purchase this course individually.

Vue tools

Vue tools - Vue.js Tutorial

From the course: Vue.js 2 for Web Designers

Start my 1-month free trial

Vue tools

- [Instructor] Most modern JavaScript frameworks assume that you're using certain tools along with them. Vue has pretty minimal requirements in this regard, and you don't really need much for this course. But I want you to know what's available, and the pieces that we'll actually need and use. So first off, Vue requires ECMAScript 5, which is the version of JavaScript that pretty much every browser supports out of the box, certainly since 2012 or so. If you know and are comfortable with ES6, of course that's fine, but you don't need it. And the example code in Vue's documentation doesn't use it. This is one of the areas where I think that Vue is very approachable for people who are new to JavaScript frameworks. Vue's templates are written in HTML, with custom attributes to add on special behaviors, but still it's just HTML. To start out, you write them as strings of HTML in your JavaScript files, or as regular tags in your HTML files, depending on how you want to use them. Strings of…

Contents