Vue.js is a flexible JavaScript framework for building web page applications and user interfaces.
The core library is focused on the view layer (
front-end, client side), and it is easy to integrate with other libraries or existing projects. On the other hand Vue is very lightweight and easy to learn.
This VueJS Mini-Course is indicated for web developers that have intermediate level knowledge of HTML, CSS, and JavaScript; it contains tutorials with examples and codes for Vue beginners.
Vue JS Tutorials
References
-
Vue.js web site
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which tag can be used to create input text field in web page?
<form> <input> <div><input type="text" name="a_name" value="val" />
Which CSS property displays the text in a small-caps font?
display font-variant font-styleh3 {
font-variant: small-caps;
}
What instruction displays a notice box with a message inside it, in JavaScript?
for() Date() alert()var msg = "Visit CoursesWeb.net";
alert(msg);
Indicate the PHP code used to get the users IP.
$_SERVER["HTTP_USER_AGENT"] $_SERVER["REMOTE_ADDR"] $_GET[]$ip = $_SERVER["REMOTE_ADDR"];
echo $ip;