Skip to content

A beautiful animated news application that is production ready , which was built using one of the most popular JavaScript Framework for building interactive user interfaces Vue.js along with Vuetify, a Vue powered UI library to speed up the Application UI construction.

Notifications You must be signed in to change notification settings

lapd-frontend/vue-news-app-with-vuetify

 
 

Repository files navigation

vue-news-app

A beautiful animated news application that is production ready, which was built using one of the most popular JavaScript Framework for building interactive user interfaces Vue.js along with Vuetify, a Vue powered UI library to speed up the Application UI construction.

Project Overview

News Application Rachid Sakara

News Application Rachid Sakara

News Application Rachid Sakara

News Application Rachid Sakara

Setup Your Free API Key

To fetch the news data from the News API backend server, we'll need to generate a new Api Key. To do so, head over to the News API official site and click on the “Get API key” button to register for a new account.

Once the registration process is done, you’ll be redirect to dashboard where the API key is already generated for you.

Now, to implement your key, open the /src/App.vue file. Then, inside the <script> tag put you key to where it said: 'Put_Your_API_Key_Here' as shown below:

<script>
...
data() {
    return {
      drawer: true, // true to show/hide the side navigation drawer 
      api_key: 'Put_Your_API_Key_Here',
      articles: [],
      errors: [] 
    }
  },
...
</script>

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report

For a detailed explanation on how things work, check out the guide and docs for vue-loader.

About

A beautiful animated news application that is production ready , which was built using one of the most popular JavaScript Framework for building interactive user interfaces Vue.js along with Vuetify, a Vue powered UI library to speed up the Application UI construction.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 71.5%
  • Vue 26.3%
  • HTML 2.2%