Vexip UI Nuxt
特性
- 🏆 自动按需导入组件、插件、指令、图标及其样式
快速设置
将 @vexip-ui/nuxt
依赖项添加到您的项目中
# Using pnpm
pnpm i -D @vexip-ui/nuxt
# Using yarn
yarn add -D @vexip-ui/nuxt
如果您想控制 Vexip UI 的版本,您也需要将 vexip-ui
依赖项添加到您的项目中
# Using pnpm
pnpm i -D vexip-ui
# Using yarn
yarn add -D vexip-ui
将 @vexip-ui/nuxt
添加到 nuxt.config.ts
文件的 modules
部分
export default defineNuxtConfig({
modules: [
'@vexip-ui/nuxt'
],
vexipUI: {
// Your module options
}
})
就是这样!您现在可以在您的 Nuxt 应用中使用 Vexip UI 了
<template>
<VButton :icon="IUser" @click="handleClick">
Button
</VButton>
<VIcon>
<ISackDollar></ISackDollar>
</VIcon>
</template>
<script setup lang="ts">
function handleClick() {
VMessage.success('Success!')
}
</script>
模块选项
请注意,每个选项都有默认值,只有在更改时才需要指定。
import type { FilterPattern } from '@rollup/pluginutils'
export interface ModuleOptions {
/**
* Include files that need to automatically resolve
*
* @default
* [
* /\.vue$/,
* /\.vue\?vue/,
* /\.vue\?v=/,
* /\.((c|m)?j|t)sx?$/
* ]
*/
include: FilterPattern,
/**
* Include files that don't need to automatically resolve
*
* @default
* [
* /[\\/]node_modules[\\/]/,
* /[\\/]\.git[\\/]/,
* /[\\/]\.nuxt[\\/]/
* ]
*/
exclude: FilterPattern,
/**
* Import css or sass styles with components
*
* @default 'css'
*/
importStyle: boolean | 'css' | 'sass',
/**
* Import the dark theme preset styles
*
* @default false
*/
importDarkTheme: boolean,
/**
* Prefix for name of components
*
* @default 'V'
*/
prefix: string,
/**
* Auto import for directives
*
* @default true
*/
directives: boolean,
/**
* Resolve icon components from '@vexip-ui/icons'
*
* @default true
*/
resolveIcon: boolean,
/**
* Prefix for name of icon components, same to `prefix` if undefined or null
*
* @default ''
*/
iconPrefix: string
}
贡献者
感谢他们所有的贡献!
开发
# Install dependencies
pnpm install
# Generate type stubs
pnpm run dev:prepare
# Develop with the playground
pnpm run dev
# Build the playground
pnpm run dev:build
# Run ESLint
pnpm run lint
# Run Vitest
pnpm run test
pnpm run test:watch
许可证
所有内容均采用 MIT 许可证。