Socket
Socket
Sign inDemoInstall

@samk-dev/nuxt-vcalendar

Package Overview
Dependencies
3
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @samk-dev/nuxt-vcalendar

Integrates V Calendar in Nuxt


Version published
Weekly downloads
3.5K
increased by24.52%
Maintainers
1
Install size
61.0 MB
Created
Weekly downloads
 

Changelog

Source

v1.0.3

compare changes

🩹 Fixes

  • Re-exported vcalendar types (16be8f7)
  • vue-screen-utils unexpected token (38bd159)

📖 Documentation

  • Use new nuxi module add command in installation (dfbc6b3)
  • Use new nuxi module add command in installation (07d8490)

🏡 Chore

  • Added stackblitz working example (5bb641f)
  • dev-deps: Adapdted husky breaking changes (ac5ec17)

❤️ Contributors

Readme

Source

Nuxt VCalendar

npm version npm downloads License Nuxt

Integrates V Calendar in Nuxt

VCalendar Docs

Features

  • Zero config
  • Prefix VCalendar components
  • Auto import all VCalendar components or only what you need

Quick Setup

  1. Add @samk-dev/nuxt-vcalendar dependency to your project
npx nuxi@latest module add @samk-dev/nuxt-vcalendar

That's it! You can now use Nuxt VCalendar in your Nuxt app ✨

Manual Installation

  1. Add @samk-dev/nuxt-vcalendar dependency to your project
# Using pnpm
pnpm add -D @samk-dev/nuxt-vcalendar

# Using yarn
yarn add --dev @samk-dev/nuxt-vcalendar

# Using npm
npm install --save-dev @samk-dev/nuxt-vcalendar
  1. Add @samk-dev/nuxt-vcalendar to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: ['@samk-dev/nuxt-vcalendar']
})

Stackblitz example

https://stackblitz.com/edit/nuxt-starter-2zwgab?file=app.vue

Usage Example

<script setup lang="ts">
  import { ref } from '#imports'
  const date = ref(new Date())

  const attrs = ref([
    {
      key: 'today',
      highlight: {
        color: 'green',
        fillMode: 'solid'
      },
      dates: new Date()
    }
  ])
</script>

<template>
  <div>
    <client-only>
      <h2>Calendar</h2>
      <VCalendar v-model="date" />
      <h2>Date Picker</h2>
      <VDatePicker v-model="date" :attributes="attrs" />
    </client-only>
  </div>
</template>

Module Options

export type VCalendarComponents = {
  DatePicker: boolean
  Calendar: boolean
}
export interface ModuleOptions {
  /**
   * @description prefix instead of v-
   * @default V
   */
  prefix: string
  /**
   * @description load v-calendar styles
   * @default true
   */
  defaultCss: boolean
  /**
   * @description load custom stylesheet
   * @default undefined
   */
  cssPath?: string
  /**
   * @description v-calendar options
   * @see https://vcalendar.io/calendar/api.html#defaults
   */
  calendarOptions?: Defaults
  /**
   * @description auto import v-calendar components
   * @default {DatePicker, true, Calendar: true}
   */
  autoImports: VCalendarComponents
}

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release

Alt

Keywords

FAQs

Last updated on 05 Apr 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc