November 2017
Beginner to intermediate
398 pages
8h 42m
English
The <template> tag contains the template of the component. Like earlier, it is HTML with the Vue special syntax (directives, text interpolation, shorthands, and so on).
Here's an example of a <template> tag in an SFC:
<template> <ul class="movies"> <li v-for="movie of movies" class="movie"> {{ movie.title }} </li> </ul></template>
In this example, the template of our component will consist of a ul element containing a list of li elements displaying the titles of the movies.
Read now
Unlock full access