Joaquin6 / vue-news-app-with-vuetify

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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

You can build this app step-by-step, following the ultimate tutorial at ButterCMS.

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.


Languages

Language:JavaScript 71.6%Language:Vue 26.2%Language:HTML 2.2%