Vuejs Course

This tutorial is a basic presentation of the Vue js render function.


Render Function is an alternative to string templates, allowing you to make the Vue component dynamic and pass arguments and values from parent component to resulted HTML structure.
Let's see an example and understand how render function works.

- In the following example we create a Vue component (named "comp_test") which can render an HTML element with dynamic tag-name, color, font-size and id.
<div id = 'demo'>
 <comp_test :elm_type="'h1,#0000ee,30,title'">Freedom is Free</comp_test>
 <comp_test :elm_type="'h3,#00ce00,25,h3tag'">To have peace I give peace.</comp_test>
 <comp_test :elm_type="'p,#ee0000,24,ptag'">The thought precedes perception.</comp_test>
 <comp_test :elm_type="'div,#1234fb,24,divtag'">Peace of mind, health of the body.</comp_test>
</div>
<script>
Vue.component('comp_test',{
 render : function(createElement){
 //gets an array of values from the string added to elm_type attribute
 var a = this.elm_type.split(',');

 //creates and returns the DOM element with data from elm_type, and defined in the attrs object-parameter
 return createElement(a[0],{
 attrs:{
 style:'color:'+a[1]+';font-size:'+a[2]+'px;',
 id:a[3]
 }
 },
 this.$slots.default //To use the text added in component
 )
 },

 //defines the prop required in each <comp_test> as a string
 props:{
 elm_type:{
 attributes: String,
 required: true
 }
 }
});

var vm = new Vue({
 el: '#demo'
});
</script>
As you can see, each <comp_test> tag binds a :elm_type prop which is defined in props property in Vue component.
The elm_type attribute must contains a string with data for the HTML element we want to obtain ('tag-name, color, font-size, id').
In the render function we get an array of values from the string added in "elm_type" attribute.
var a = this.elm_type.split(',');

Render function receives a createElement method as the argument and returns it.
createElement creates the DOM element with data from elm_type (defined in the attrs object).
The content added in the resulted HTML element is the text from each <comp_test>, due to the following argument:
this.$slots.default

- Results:

Freedom is Free

To have peace I give peace.

The thought precedes perception.

Peace of mind, health of the body.

For details about the createElement method from render function see the Vue documentation: createElement Arguments.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
What attribute makes an option from <select> selected?
checked="checked" selected="selected" disabled="disabled"
<select name="a_name">
 <option value="val1">Option 1</option>
 <option value="val2" selected="selected">Option 2</option>
</select>
What CSS value allows to create color gradients for background?
contain repeat-x linear-gradient
#id {
  background: linear-gradient(top left, #1f1, #fff, #11f);
}
What statement creates an array in JavaScript?
[] {} new Object()
var arr = [1, "CoursesWeb.net", "MarPlo.net"];
alert(arr[2]);
Indicate the PHP function used to redirect to other page.
function() header() switch()
header("Location: http://coursesweb.net/");
exit;
Render Function

Last accessed pages

  1. Animating in Flash - Frame-by-Frame Animation (2777)
  2. PHP Unzipper - Extract Zip, Rar Archives (31765)
  3. SHA256 Encrypt hash in JavaScript (31205)
  4. ActionScript 3 - Change MovieClip Color (8945)
  5. The School for Gods (5814)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (8)
  2. SSEP - Site Search Engine PHP-Ajax (5)
  3. Adobe Flash Courses ActionScript 3 Tutorials (3)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (3)
  5. Animation with the Timer class (3)
Chat
Chat or leave a message for the other users
Full screenInchide