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
Click on the tag that creates an ordered list
<ul> <tr> <ol>
<ol>
  <li>List-1</li>
  <li>List-2</li>
</ol>
Which selector represents the ID of an element in CSS
.name #name name
#id {
  color: #0110fb;
}
What statement creates an object in JavaScript?
{} [] new Date()
var obj = {"site": "CoursesWeb.net", "pr": 5};
alert(obj.site);
Indicate the instruction used to evaluate if a condiition is True or False
else if() switch()
$var = 8;
if($var == 8) echo $var;
Render Function

Last accessed pages

  1. Adding data from HTML Table Rows in Form fields (9595)
  2. Ajax-PHP Chat Script (49229)
  3. Adding text with ActionScript 3 (5494)
  4. Render Function (475)
  5. SHA1 Encrypt data in JavaScript (35347)

Popular pages this month

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