
If you have tried to use jquery version of owl carousel in your existing vuejs project or tried to convert jquery based application to vuejs you might have trouble making owl carousel to work flawlessly. The carousel might load... Read more

Passing arguments in button click event are the most commonly needed functionality in many mobile applications. In case of applications such as quiz, tic tac toe or anything which has an array of buttons /elements handling the event for... Read more

In our previous tutorial, we have made the tic tac toe game in javascript using modern class-based syntax added in ES6. In this post, we are going to clone the same game in VueJS instead. If you are learning Vue... Read more

In our previous post, we have made the basic tic tac toe game with plain vanilla javascript. The purpose of this post is to replicate the same game using modern ES6 syntax: ie using class structures. As you know from... Read more

Making games is a great way to learn programming. It’s not just fun but also teaches us how to use complex logic and implement UI and logic binding. Tic Tac Toe is the best choice for beginners to start on... Read more

Preferences allow you to save settings and other stuff in persistent key-value storage at your phone. We encounter many situations when we have to save our application data to the phone and load later on. In such a case we... Read more

The object is the fundamental part of any modern OOP language. JS is very different in the case of objects compared to other programming languages. Unlike another language, we can create an object in javascript using multiple ways. As objects... Read more

Implementing multiline text in the label of your Native script Vue application is not so straightforward as you have thought. The newline character in your text won’t be rendered into the newline directly if you are the binding text for... Read more