
Security News
Socket Integrates With Bun 1.3’s Security Scanner API
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
@vexip-ui/nuxt
Advanced tools
Add @vexip-ui/nuxt
dependency to your project:
npx nuxi@latest module add vexip-ui
If you want to control the version of Vexip UI, you need to add vexip-ui
dependency to your project too:
# Using pnpm
pnpm i -D vexip-ui
# Using yarn
yarn add -D vexip-ui
Add @vexip-ui/nuxt
to the modules
section of nuxt.config.ts
:
export default defineNuxtConfig({
modules: [
'@vexip-ui/nuxt'
],
vexipUI: {
// Your module options
}
})
That's it! You can now use Vexip UI in your Nuxt app:
<template>
<VButton :icon="IUser" @click="handleClick">
Button
</VButton>
<VIcon>
<ISackDollar></ISackDollar>
</VIcon>
</template>
<script setup lang="ts">
function handleClick() {
VMessage.success('Success!')
}
</script>
Note that each option has default value, you only need to specify when changing it.
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
}
Thanks for all their contributions!
# 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
All in MIT license.
FAQs
Nuxt module for Vexip UI
We found that @vexip-ui/nuxt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.
Security News
Former RubyGems maintainers have launched The Gem Cooperative, a new community-run project aimed at rebuilding open governance in the Ruby ecosystem.