UNPKG

@nuxt/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

16 lines (13 loc) 257 B
#!/usr/bin/env node import { defineCommand, runMain } from 'citty' import make from './commands/make/index.mjs' const main = defineCommand({ meta: { name: 'nuxt-ui', description: 'Nuxt UI CLI' }, subCommands: { make } }) runMain(main)