Full-Stack Web Development with Vue.js and Node

(singke) #1

Building the Real Application Chapter 5


<v-btn flat color="purple">Rate this movie</v-btn>
<v-spacer></v-spacer>
</v-card-actions>
</v-card>
</v-flex>
<v-flex xs4>
<v-card>
<v-card-title primary-title>
<div>
<div class="headline">The Revenant</div>
<span class="grey--text">2015 ‧ Drama/Thriller ‧ 2h
36m</span>
</div>
</v-card-title>
<v-card-text>
While exploring the uncharted wilderness in 1823, frontiersman
Hugh Glass (Leonardo DiCaprio) sustains life-threatening injuries from a
brutal bear attack. When a member (Tom Hardy) of his hunting team kills his
young son (Forrest Goodluck) and leaves him for dead, Glass must utilize
his survival skills to find a way back to civilization. Grief-stricken and
fueled by vengeance, the legendary fur trapper treks through the snowy
terrain to track down the man who betrayed him.
</v-card-text>
<v-card-actions>
<v-btn flat color="purple">Rate this movie</v-btn>
<v-spacer></v-spacer>
</v-card-actions>
</v-card>
</v-flex>
</v-layout>
</template>
<script>
import axios from 'axios';

export default {
name: 'Movies',
data() {
return {
movies: [],
};
},
mounted() {
this.fetchMovies();
},
methods: {
async fetchMovies() {
return axios({
method: 'get',
Free download pdf