1.2.1 • Published 2 years ago

@nuxtclub/slugify v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@nuxtclub/slugify

Setup

  1. Add @nuxtclub/slugify dependency to your project
yarn add -D @nuxtclub/slugify # or npm i -D @nuxtclub/slugify
  1. Add @nuxtclub/slugify to the buildModules section of nuxt.config.js.

:warning: If you are using Nuxt < v2.9 you have to install the module as a dependency (No --dev or --save-dev flags) and use modules section in nuxt.config.js instead of buildModules.

export default {
	buildModules: ['@nuxtclub/slugify'],
}

Globals

You can add global/default options:

export default {
	buildModules: ['@nuxtclub/slugify'],
	slugify: {
		globals: {
			lower: true,
		},
	},
}

Extend Slugify

You can extend the supported symbols, or override the existing ones with your own:

// nuxt.config.js
export default {
	buildModules: ['@nuxtclub/slugify'],
	slugify: {
		extend: {
			'@': 'at',
		},
	},
}

Typescript support

Add the types to your "types" array in tsconfig.json after the @nuxt/types entry.

:warning: Use @nuxt/vue-app instead of @nuxt/types for nuxt < 2.9.

{
	"compilerOptions": {
		"types": ["@nuxt/types", "@nuxtclub/slugify"]
	}
}

Usage

This module will inject \$slugify in the context of your application.

Learn more about Slugify here

1.2.0

2 years ago

1.2.1

2 years ago

1.1.0

3 years ago

1.0.0

3 years ago