negative-borders-nuxt
v1.2.1
Published
Negative borders nuxt module
Readme
Negative borders for Nuxt
Nuxt module for https://github.com/nfpocket/negative-borders
Quick Setup
Install the module to your Nuxt application with one command:
npx nuxi module add negative-borders-nuxtThat's it! You can now use Negative borders for Nuxt in your Nuxt app ✨
Usage
<template>
<div
style="width: 200px; height: 200px; background-color: chartreuse"
v-negative-borders="{
size: '50px',
color: 'orange',
position: 'bottom',
}"
></div>
</template>
<script setup></script>Contribution
# 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