Skip to content

CRBroughton/Weather-Widgets-Vue

Repository files navigation

Vue Weather Widgets

A small collection of Weather Widgets; Built with Vue.

Usage

Supply your OpenWeather API key One call API Key, as well as all required props.

Standard

standard

Standard + Daily prop

standard & Daily Prop

Props

interface Props {
  apikey?: string
  lat: string
  lon: string
  imperial?: boolean
  daily?: boolean
  warningThresholds?: {
    min: number
    max: number
  }
  warningColour?: string
  bgColour?: string
}

Medium

Medium

Props

interface Props {
  apikey?: string
  lat: string
  lon: string
  imperial?: boolean
}

Small

Small

Props

interface Props {
  apikey?: string
  lat: string
  lon: string
  imperial?: boolean
}

Extra Small

Extra Small

Props

interface Props {
  apikey?: string
  lat: string
  lon: string
  imperial?: boolean
}