@vant/nuxt 
@vant/nuxt 
A lightweight, customizable Vue UI library for mobile web apps.
  
Vant Nuxt
Vant module for Nuxt
Features
- Automatically import components and styles on demand.
 - Automatically import of showDialog, showToast and other methods.
 
Install
npx nuxi@latest module add vant
# or
npm i vant @vant/nuxt -D
export default defineNuxtConfig({
  modules: ['@vant/nuxt'],
  vant: {
    /** Options */
  },
});
Usage
<template>
  <van-button type="primary" @click="showToast('toast')">button</van-button>
  <VanButton type="success" @click="showNotify('notify')">button</VanButton>
  <LazyVanButton type="default">lazy button</LazyVanButton>
</template>
Reference Nuxt documentation and playground use.
Options
lazyload
- Type: 
boolean|object - Default: 
false 
How to load directives and components from lazyload.
eg. { lazyComponent: true }
importStyle
- Type: 
boolean - Default: 
true 
Whether to automatically import styles.
defaultLocale
- Type: 
string 
Replace default locale, you can find locale list here.
excludeExports
- Type: 
array - Default: 
['Lazyload', 'Locale'] 
Exclude exports from Vant that are not component content.
components
- Type: 
array 
If there are components that are not imported automatically from Vant, you need to add the component here.
imports
- Type: 
array 
If you wish to add automatically import content from Vant, you can add it here.
include
- Type: 
array - Default: 
[ /\.vue$/, /\.vue\?vue/, /\.vue\?v=/, /\.((c|m)?j|t)sx?$/] 
Include files that need to automatically import styles.
exclude
- Type: 
array - Default: 
[/[\\/]node_modules[\\/]/, /[\\/]\.git[\\/]/, /[\\/]\.nuxt[\\/]/] 
Exclude files that do not require the automatic import of styles.
Development
- Run 
pnpm ito install the dependencies. - Run 
pnpm dev:prepareto generate type stubs. - Run 
pnpm devto start playground in development mode. - Run 
pnpm dev:buildto build playground. - Run 
pnpm dev:startto locally preview playground. - Run 
pnpm buildto build this project.