Skip to content
Snippets Groups Projects
Select Git revision
  • ff093af6891544d3d45939c6a75e4c8dc063ab8c
  • master default
2 results

faceAnalysis.cpython-39.pyc

Blame
  • Forked from Automatants / Facial expression detection
    Source project has a limited visibility.
    Movie.vue 500 B
    <template>
      <table>
        <thead>
          <th>Titre</th>
          <th>Date de sortie</th>
          <th>Image</th>
        </thead>
        <tbody>
          <tr v-for="movie in movies" :key="movie.id">
            <td>{{ movie.title }}</td>
            <td>{{ movie.release_date }}</td>
            <td> <img :src= "'https://image.tmdb.org/t/p/original/' + movie.poster_path" /> </td>
          </tr>
        </tbody>
      </table>
    </template>
    
    <script>
    export default {
      props: {
        movies: Array,
      },
    };
    </script>
    
    <style scoped>
    </style>