Rendering
There is three things to figure out for rendering a component :
Where this component will be placed on the page and its objectif
What are the DOM command that can be used within the template
How to setup the reactivity of your component, so that it becomes dynamic
Binding
Binding consists of linking data in the <script>
section of your component with the <template>
section of the same component. In Vue.js the simpliest way to bind data is to use the {{ Mustache }}
tag (two {
, your data, then two }
). While the component is rendered, the tag will be replaced with the content of the data used within the mustache.
Mustache can handle complex JavaScript operation too
Everything in the mustache tag will be interpreted! You cannot put html elements in there.
Binding directives
Nonetheless, mustache tag has some limitation, especially within the HTML attributes since they cannot be used. For example, you can't write <div id="{{myDynamicId}}">
: this will throw an error. To circumvent this issue, Vue.js introduces directives which are special-interpreted HTML attributes.
The most important one is the v-bind
directive. This directive allows to bind a standard HTML attribute element to a custom data. For example, you can bind your data with the id
of an element using the v-bind
directive.
There also exists dynamic binding, which allows you to use varibale to determine which HTML property you want to bind your data with. Check the documentation if your are interested.
Two way data binding allows a child component to update its direct parent. It is mostly used for forms. Check here for more information.
Template syntax
We will see in this section some handful syntaxex to define how your component should render according to its state (its data).
Conditional rendering
In your component template, you will often face the necessity to check if a variable exists in order to display specific information. For instance, you want to display user's information only if he/she is logged in your application, otherwise you don't have access to this information.
To do that, Vue.js introduce the v-if
directive. It is used to conditionally render a block: the block will be rendered only if the expression value is computed to true
. You also have the v-else-if
and v-else
directive, obviously.
A directive has to be attached to only one element. If you want to toggle more than one HTML element with you directive, you must use it on a <template>
element, which serves as an invisible wrapper.
Loop/list rendering
Another common needs is to dynamicaly render list of elements in a page. Vue.js introduces the v-for
directive for addressing this need. It uses a special syntax item in items
(if items
is the array, item
is an alias for the array element: it can be anything else). You can also retrieve the key/index of the element iterated with the special syntax (item, index) in items
.
You can use v-for
to render a list based on an array.
Here, a first <li>
element will be rendered with the Foo message, and the second with the Bar message.
It is also possible to iterate over an object's properties with the same directive.
Here, the first <li>
will display Name is: Soen, and so on.
Another important things for the v-for
directive is about maintaining the state of your list up to date. Whenever possible, it is higly recommended by Vue.js assign a unique key
to the alias element created (here item
and prop
) when possible (the value must be numeric or string). To do so:
Vue.js reactivity
When a Vue.js instance is created, it adds all the properties found in its data
object to the reactivity system of the framework. When values of those properties change, the view will automatically “react”, updating itself to match the new values. This is a powerful feature that you should intensively use (it is somewhat a reimplementation of the observer pattern).
Each component has a data
object. For every component but the main component Vue.vue
, data must be a function, otherwise, the data will be shared accross the difference instances of the same component.
In the <script>
element of your component, you should have:
Then, during using app, if you change the value of name
, this change will reflect on the template of the component.
Instance Lifecycle Hooks
Lifecycle hooks are special functions which allow user to perform specifics operations at certain moment of the creation and the rendering of a component. For example, just before your component goes mounted
to the page, you can modify the component's data.
Below a diagram of the lifecycle of a component and the associated hooks.
Last updated
Was this helpful?