Skip to content

Attributify preset

Dit schakelt de attributify modus in voor andere presets.

Bron Code

Installatie

bash
pnpm add -D @unocss/preset-attributify
bash
yarn add -D @unocss/preset-attributify
bash
npm install -D @unocss/preset-attributify
bash
bun add -D @unocss/preset-attributify
ts
import presetAttributify from '@unocss/preset-attributify'

export default defineConfig({
  presets: [
    presetAttributify({ /* preset opties */ }),
    // ...
  ],
})

TIP

Deze preset is opgenomen in het unocss pakket, je kunt het ook vandaar importeren:

ts
import { presetAttributify } from 'unocss'

Attributify Modus

Stel je hebt deze knop die gebruik maakt van Tailwind CSS's utilities. Wanneer de lijst langer wordt, wordt het echt moeilijk te lezen en te onderhouden.

html

Released under the MIT License.