Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@blueriver/nuxt-streamline

Package Overview
Dependencies
Maintainers
5
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blueriver/nuxt-streamline

A reusable component library for Nuxt apps

  • 1.0.602
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
5
Weekly downloads
 
Created
Source

nuxt-streamline

A reusable component library for Nuxt apps

NsDatePicker

  • A simple, standardized date picker component
  • Extends vuejs-datepicker (https://github.com/charliekassel/vuejs-datepicker)
  • Pre-configured with our preferred default options

Usage

<template>
  <div>
    <!--
	Wrap the date picker in <client-only> to prevent an
	error during server side render
	-->
    <client-only>
      <NsDatePicker v-model="myDate" />
    </client-only>
  </div>
</template>

<script>
import { NsDatePicker } from 'nuxt-streamline'

export default {
  components: {
    NsDatePicker,
  },
  data: () => ({
    myDate: '',
  }),
}
</script>

Props Available

All props available to vuejs-datepicker should be available for use with NsDatePicker. See https://github.com/charliekassel/vuejs-datepicker#available-props

Other props specific to NsDatePicker:

PropsTypeDefaultDescription
dayHeaderStringdRepresents the abbreviation format of the day headings in the datepicker (e.g. d="M", "T", "W" whereas ddd="Mon", "Tue", "Wed")

FAQs

Package last updated on 30 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc