varlet

varlet

A Material design mobile component library developed based on Vue3

Varlet Nuxt

Welcome to contribute this repo

Varlet Module for Nuxt3

Future

  • Make up the Lazy Option
  • Component Demo for Playground
  • Template for Nuxt3
  • Migrate to knitwork

Quick Setup

  1. Add @varlet/nuxt dependency to your project
# Using pnpmpnpm add -D @varlet/uipnpm add -D @varlet/nuxt# Using yarnyarn add --dev @varlet/uiyarn add --dev @varlet/nuxt# Using npmnpm install --save-dev @varlet/uinpm install --save-dev @varlet/nuxt
  1. Add @varlet/nuxt to the modules section of nuxt.config.ts
export default defineNuxtConfig({  modules: [    '@varlet/nuxt'  ],  varlet: {    ...  }})

That's it! You can now use Varlet Module in your Nuxt app ✨

Contribution

We recommend using pnpm

# Install dependenciespnpm install# Generate type stubspnpm run dev:prepare# Develop with the playgroundpnpm run dev# Build the playgroundpnpm run dev:build# Run ESLintpnpm run lint# Release new versionpnpm run release