Created
June 30, 2017 17:04
-
-
Save nuria-fl/7811b94e13335b5ae57fa0a5e8e447d2 to your computer and use it in GitHub Desktop.
Vue tutorial: Crear un componente
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<article v-for="movie in movies"> | |
<img :src="`https://image.tmdb.org/t/p/w500/\${movie.poster_path}`" alt=""> | |
<h4>{{ movie.title }}</h4> | |
<p>{{ movie.vote_average }}</p> | |
</article> | |
</div> | |
</template> | |
<script> | |
export default { | |
data () { | |
return { | |
movies: [ | |
{ | |
"vote_average":7, | |
"title":"Wonder Woman", | |
"poster_path":"\/gfJGlDaHuWimErCr5Ql0I8x9QSy.jpg", | |
"overview":"An Amazon princess comes to the world of Man to become the greatest of the female superheroes.", | |
"release_date":"2017-05-30" | |
}, | |
{ | |
"vote_average":8.1, | |
"title":"Interstellar", | |
"poster_path":"\/nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg", | |
"overview":"Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", | |
"release_date":"2014-11-05" | |
} | |
] | |
} | |
} | |
} | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src/router/index.js | |
import Vue from 'vue' | |
import Router from 'vue-router' | |
import Home from '@/components/Home' | |
Vue.use(Router) | |
export default new Router({ | |
routes: [ | |
{ | |
path: '/', | |
name: 'Home', | |
component: Home | |
} | |
] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment