@ax2/dayjs-module

Day.js integration for Nuxt

Usage no npm install needed!

<script type="module">
  import ax2DayjsModule from 'https://cdn.skypack.dev/@ax2/dayjs-module';
</script>

README

dayjs-module

npm (scoped with tag) npm Dependencies Code Style

Day.js integration for Nuxt

📖 Release Notes

Features

Integrate Day.js with your Nuxt project.

Setup

  • Install the module with your favorite package manager.
yarn add @ax2/dayjs-module
# Or npm i @ax2/dayjs-module
  • Add dayjs-module to modules section of nuxt.config.js.
// nuxt.config.js

{
  modules: [
    '@ax2/dayjs-module',
 ],
}
  • Configure the module as needed by adding a dayjs key to nuxt.config.js.
// nuxt.config.js

{
  dayjs: {
    // Module options
  }
}

Usage

At the moment, all the module does is inject Day.js into Vue instances so you can call it from anywhere in your app:

<template>
  <div>
    {{ $dayjs('2018-09-18').format('dddd, MMMM DD, YYYY') }}
    <!-- Renders: Tuesday, September 18, 2018 -->
  </div>
</template>

Development

  • Clone this repository
  • Install dependencies using yarn install or npm install
  • Start development server using npm run dev

License

MIT License

Copyright (c) Ax2 Inc.