Skip to content

teamnovu/utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

novu Utils

A repository containing commonly used utilities.

Installation

yarn add @teamnovu/utils

List of Utils

Common

  • useId is used to generate unique ID's eg. for input fields and their labels.

Vue.js

  • useDispatchStoreAction simplifies dispatching a store action, tracking it's state and displaying validation errors. It can be used for simple form submits.
  • Popover is a collection of components that imitate HeadlessUI's popover components and are compatible with Vue 2.

Error handling

If you encounter Module parse failed: Unexpected token-error try adding the utils-package to the build.transpile option in your nuxt.config.js:

build: {
  transpile: [
    '@teamnovu/utils',
  ],
]

Releasing a new verison

yarn release