Go to file
Tuğçe Küçükoğlu 69770ccf5b Update TailwindDoc.vue 2023-10-17 11:28:20 +03:00
.github Update generate_api_doc.yml 2023-10-11 00:07:36 +01:00
.vscode Fixed #4530 - Export styles of all components 2023-10-02 11:46:09 +01:00
api-generator Update overlaypanel.js 2023-10-17 11:26:11 +03:00
assets Fixed mobile menu when news active 2023-10-16 12:46:00 +03:00
components Update API doc 2023-10-17 07:47:01 +00:00
directives Move to directives folder 2023-10-15 17:04:58 +03:00
doc Update TailwindDoc.vue 2023-10-17 11:28:20 +03:00
layouts Remove unused methods 2023-10-16 22:28:57 +03:00
middleware landing scroll top fix 2022-12-28 12:32:27 +03:00
pages Tooltip: autoHide (#4126) 2023-10-17 10:11:39 +03:00
plugins Update nuxt-primevue version 2023-10-15 20:03:12 +01:00
public Consistent focus-visible states 2023-10-14 01:09:30 +03:00
service Remove obselete service 2023-06-01 14:11:17 +03:00
.editorconfig Fixed #4530 - Export styles of all components 2023-10-02 11:46:09 +01:00
.eslintrc.js Refactor #3965, Improve build and Added *Base models 2023-07-03 23:20:35 +01:00
.gitignore Fix #4558 - locale "selectedItemsLabel" is broken on MultiSelect 2023-10-11 01:48:17 +04:00
.prettierignore prettier warnings fixed 2022-12-20 15:32:32 +03:00
.prettierrc.json Lint changes 2022-09-14 17:26:41 +03:00
CHANGELOG.md Fixed kebab typo (#4593) 2023-10-12 09:24:34 +01:00
LICENSE.md Merged new Docs and Demos 2023-02-28 11:29:30 +03:00
README.md Reset theme when navigating to home 2023-10-15 07:10:40 +03:00
app.vue Reset theme when navigating to home 2023-10-15 07:10:40 +03:00
build-meta.js Fixed #4530 - Export styles of all components 2023-10-02 11:46:09 +01:00
error.vue Error page updated for vue warning 2023-03-21 20:34:11 +03:00
gulpfile.js Update build primevue.min.css process 2023-07-07 11:07:42 +03:00
nuxt.config.js Reset theme when navigating to home 2023-10-15 07:10:40 +03:00
package-build.json Code Format 2023-10-11 09:56:22 +00:00
package-lock.json Update nuxt-primevue version 2023-10-15 20:03:12 +01:00
package.json Update nuxt-primevue version 2023-10-15 20:03:12 +01:00
rollup.config.js Refactor #4610 2023-10-13 14:26:43 +03:00
tsconfig.json Fixed #4530 - Export styles of all components 2023-10-02 11:46:09 +01:00
vite.config.js Typo fix 2023-10-03 19:43:41 +03:00
vitest.config.js Fix PR build 2023-10-12 19:38:37 -04:00

README.md

License: MIT npm version Discord Chat Prime Discussions

PrimeVue Hero

PrimeVue

PrimeVue is a rich set of open source UI Components for Vue. See PrimeVue homepage for live showcase and documentation.

Download

PrimeVue is available at npm.

// with npm
npm install primevue

// with yarn
yarn add primevue

Plugin

PrimeVue plugin is required to be installed with the use function to set up the default configuration.

import { createApp } from 'vue';
import PrimeVue from 'primevue/config';
const app = createApp(App);

app.use(PrimeVue);

Theming

PrimeVue has two theming has modes; styled or unstyled.

Styled Mode

Styled mode is based on pre-skinned components with opinionated themes like Material, Bootstrap or PrimeOne themes. Theme is the required css file to be imported, visit the Themes section for the complete list of available themes to choose from.

// theme
import 'primevue/resources/themes/lara-light-teal/theme.css';

Unstyled Mode

Unstyled mode is disabled by default for all components. Using the PrimeVue plugin during installation, set unstyled as true to enable it globally. Visit the Unstyled mode documentation for more information and examples.

import { createApp } from 'vue';
import PrimeVue from 'primevue/config';
const app = createApp(App);

app.use(PrimeVue, { unstyled: true });

Usage

Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component.

import Button from 'primevue/button';

const app = createApp(App);
app.component('Button', Button);

Prop Cases

Component prop names are described as camel case throughout the documentation however kebab-case is also fully supported. Events on the other hand should always be kebab-case.

<Dialog :showHeader="false"></Dialog>

<!-- can be written as -->

<Dialog :show-header="false"></Dialog>

Nuxt Integration

PrimeVue can easily be used with Nuxt 3 using a custom plugin.

nuxt.config.js

Open the nuxt configuration file and add the css dependencies.

export default defineNuxtConfig({
    css: ['primevue/resources/themes/lara-light-teal/theme.css'],
    build: {
        transpile: ['primevue']
    }
});

primevue.js

Create a file like primevue.js under the plugins directory for the configuration.

import { defineNuxtPlugin } from '#app';
import PrimeVue from 'primevue/config';
import Button from 'primevue/button';

export default defineNuxtPlugin((nuxtApp) => {
    nuxtApp.vueApp.use(PrimeVue, { ripple: true });
    nuxtApp.vueApp.component('Button', Button);
    //other components that you need
});

Example

We've created various samples for the popular options in the Vue ecosystem. Visit the primevue-examples repository for the samples.

Vite

vite

Nuxt

nuxt

Astro

astro

Contributors