@vetury/lodash
v1.0.1
Published
<!-- Get your module up and running quickly.
Downloads
3
Readme
@vetury/lodash
My new Nuxt module for doing amazing things.
Features
WIP
Quick Setup
- Add
@vetury/lodash
dependency to your project
# Using pnpm
pnpm add -D @vetury/lodash
# Using yarn
yarn add --dev @vetury/lodash
# Using npm
npm install --save-dev @vetury/lodash
# Using bun
bun add --save-dev @vetury/lodash
- Add
@vetury/lodash
to themodules
section ofnuxt.config.ts
and configure with thevLodash
key
export default defineNuxtConfig({
modules: ["@vetury/lodash"],
//example config
vLodash: {
caseAfterPrefix: "camel",
exclude: ["AFTER"],
prefixSkip: [],
prefix: "_",
upperAfterPrefix: false,
},
});
Check the Documentation for more info
That's it! You can now use @vetury/lodash in your Nuxt app ✨