November 2017
Beginner to intermediate
398 pages
8h 42m
English
We will now use this new Scoped slot concept to display the information about the place associated with the Blog post.
<script> export default { props: { name: String, address: String, }, render (h) { return <div class="details"> <div class="name"><i class="material-icons">place</i> {this.name}</div> <div class="address"> {this.address}</div> </div> }, } </script>
Then we will implement the LocationInfo.vue component.
Read now
Unlock full access