- Vue app to display random fact data using Vuex state management.
- Also shows a random image from Unsplash.
- Note: to open web links in a new window use: ctrl+click on link
- Data displayed using one-way data-binding and an v-for loop.
- Simple top navigation between random fact shown on a card and a list of facts.
- 'purgecss' was disabled to make this work with the version upgrades. It is not required anyway.
- Vue framework v2
- Vue Router v3 the official router for Vue.js
- Vue CLI v4
- tailwindcss v2 low-level CSS framework plugin.
- Simple to use Random facts API
- Vue DevTools extension for Chrome
- Run npm ito install dependencies.
- Run npm run servethen navigate tohttp://localhost:8080/. The app will automatically reload if you change any of the source files.
- Run npm run buildto create a build file
- extract from store/index.jsto control Vuex states
export default new Vuex.Store({
  state: {
    currentData: "Random facts display",
    allDatas: []
  },
  mutations: {
    setCurrentData(state, payload) {
      state.currentData = payload;
      state.allDatas.push(payload);
    }
  },
  actions: {
    async setCurrentData(state){
      const data = await fetch(url, { headers });
      const d = await data.json();
      console.log('json data: ', d.items)
      state.commit("setCurrentData", d.text);
    }
  },
  modules: {},
  getters: {
    getCurrentData: state => state.currentData,
    getAllDatas: state => state.allDatas
  }
});- Uses Vue & Tailwind CSS for reduced bundle size
- Random image every time app started or screen is refreshed, add API data model
- Status: Working. Updated june 2021.
- To-Do: Nothing
- Tailwind CSS cards
- Generate Random Images From Unsplash Without Using The API, June 24, 2018 by Andreas Wik
- This project is licensed under the terms of the MIT license.
- Repo created by ABateman, email: gomezbateman@yahoo.com

