Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

tugsanunlu/omdb-vue-component-blog-post

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

omdb-vue-component

Netlify Status

Open Movie Database Component for Vue.js

Movie list (/src/App.vue)

  data() {
    return {
      title: '★ My Favorite Films',
      films: [
        'tt2905772', 
        'tt9418878', 
        'tt5334076', 
        'tt4373956', 
        'tt1827487'
      ],
      currentIndex: 0,
    };
  },

Get movie ID from IMDb website

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your tests

npm run test

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.