
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
@pinegrow/primevue-plugin
Advanced tools
PrimeVue plugin for Pinegrow ⚡️
Pinegrow PrimeVue Plugin provides customized visual controls, design panel for theming and other rich visual features customized for your PrimeVue experience.
Note:
@pinegrow/primevue-plugin to your project# Using npm
npm install -D @pinegrow/primevue-plugin
# Using pnpm
pnpm add -D @pinegrow/primevue-plugin
primevue along with configPath as options to liveDesigner in your config.//vite.config.[js,ts]
export default defineConfig({
plugins: [
liveDesigner({
// For options, refer to https://www.npmjs.com/package/@pinegrow/vite-plugin
//...
primevue: {
/* PinegrowPrimeVueModuleOptions (for more details, refer to Options section below) */
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
configPath: 'primevue.config.ts', // or file where primevue is created
// utilities: false,
// restartOnConfigUpdate: true,
restartOnThemeUpdate: true,
},
}),
//...
],
//...
})
//nuxt.config.ts
export default defineNuxtConfig({
modules: [
'@pinegrow/nuxt-module',
//...
],
pinegrow: {
liveDesigner: {
// For options, refer to https://www.npmjs.com/package/@pinegrow/vite-plugin
//...
primevue: {
/* PinegrowPrimeVueModuleOptions (for more details, refer to Options section below) */
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
configPath: 'primevue.config.ts', // or file where primevue is created
// utilities: false,
// restartOnConfigUpdate: true,
restartOnThemeUpdate: true,
},
},
},
//...
})
//iles.config.ts
import type { LiveDesignerOptions } from '@pinegrow/vite-plugin'
export default defineConfig({
modules: [
[
'@pinegrow/iles-module',
{
liveDesigner: {
// For options, refer to https://www.npmjs.com/package/@pinegrow/vite-plugin
//...
primevue: {
/* PinegrowPrimeVueModuleOptions (for more details, refer to Options section below) */
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
configPath: 'primevue.config.ts', // or file where primevue is created
// utilities: false,
// restartOnConfigUpdate: true,
restartOnThemeUpdate: true,
},
} as LiveDesignerOptions,
},
],
//...
],
//...
})
//astro.config.[mjs]
import { defineConfig } from 'astro/config'
import vue from '@astrojs/vue'
import Pinegrow from '@pinegrow/astro-module'
export default defineConfig({
integrations: [
vue(),
Pinegrow({
liveDesigner: {
// For options, refer to https://www.npmjs.com/package/@pinegrow/vite-plugin
//...
primevue: {
/* PinegrowPrimeVueModuleOptions (for more details, refer to Options section below) */
/* Please ensure that you update the filenames and paths to accurately match those used in your project. */
configPath: 'primevue.config.ts', // or file where primevue is created
// utilities: false,
// restartOnConfigUpdate: true,
restartOnThemeUpdate: true,
},
},
}),
//...
],
//...
})
Now, open your project in your Pinegrow app (currently only Vue Designer). ✨
Theme Customization (optional) - Pinegrow PrimeVue addon enables easy theming based on colors, fonts and background images. Theme files are saved at the location specified by the themePath option (default: [src]/themes/pg-primevue/tokens.[cjs,mjs]). To use the theme, follow the instructions in the Config Panel of your Pinegrow app (currently only Vue Designer) under @pinegrow/primevue-plugin package.
interface PinegrowPrimeVueModuleOptions {
/**
* Absolute or relative path of the primevue configuration file.
*/
configPath: string | any
/**
* Absolute or relative path of the primevue theme file.
* @default 'src/themes/pg-primevue/tokens.[cjs,mjs]'
* @default 'themes/pg-primevue/tokens.[cjs,mjs]' // Nuxt
* Set to false to turn off theming via Design Panel
*/
themePath?: string | boolean
/**
* Turn off visual controls for PrimeVue utility classes
* @default true
*/
utilities?: boolean
/**
* Restart on primevue config file updates
* @default false
*/
restartOnConfigUpdate?: boolean
/**
* Restart on primevue theme file updates
* @default false
*/
restartOnThemeUpdate?: boolean
}
interface PinegrowPrimeVueModule {
/**
* Pinegrow PrimeVue Module Options, added within liveDesigner in vite/nuxt/quasar/iles/astro config files
*/
primevue: PinegrowPrimeVueModuleOptions
}
Copyright (c) Pinegrow
FAQs
Pinegrow primevue Plugin
We found that @pinegrow/primevue-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.