Go to file
Cagatay Civici 10d519d2e8 Remove manualInput focus restriction 2024-05-30 12:23:00 +03:00
.github
.vscode
api-generator Refactor #5785 2024-05-27 12:24:31 +03:00
assets Fixed templates text visuals 2024-05-30 02:00:38 +03:00
components Remove manualInput focus restriction 2024-05-30 12:23:00 +03:00
directives
doc Fixed color issue in hover 2024-05-30 11:57:44 +03:00
layouts Lift the state up 2024-05-26 03:28:48 +03:00
middleware
modules/nuxt-primevue
pages Migrated shrink and grow 2024-05-30 02:48:15 +03:00
plugins Remove comments 2024-05-27 10:20:40 +03:00
public
server/api
service
themes More contrast for Noir states 2024-05-25 23:55:27 +03:00
.editorconfig
.eslintrc.js
.gitignore
.prettierignore
.prettierrc.json
CHANGELOG.md
LICENSE.md Update year 2024-02-23 16:41:53 +03:00
README.md
app.vue Revert "Error page dark mode change fixes" 2024-05-24 11:17:58 +03:00
build-meta.js
error-backup.vue Add backup file 2024-05-24 11:16:21 +03:00
error.vue Update error page 2024-05-27 10:12:51 +03:00
nuxt-vite.config.js Visual updates for OverlayBadge 2024-05-25 14:57:35 +03:00
nuxt.config.js Format fixes 2024-05-22 16:52:56 +03:00
package-lock.json Bumped our plugin 2024-05-24 19:14:09 +03:00
package.json Move migration to guides 2024-05-27 14:15:29 +03:00
rollup.config.js Refactor #5774 2024-05-24 15:00:32 +01:00
tailwind.config.js Fixed DataView loading demo, aligned breakpoints 2024-05-24 09:45:57 +03:00
tsconfig.json
vitest.config.js

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.

# Using npm
npm install primevue

# Using yarn
yarn add primevue

# Using pnpm
pnpm add primevue

Plugin

PrimeVue plugin is required to be installed as an application plugin to set up the default configuration. The plugin is lightweight, only sets up the configuration object without affecting your application. PrimeVue has two styling modes; Styled and Unstyled. If you are just getting started, we suggest to using the styled mode.

Styled Mode

Styled mode provides pre-skinned components, default theme is Aura with emerald as the primary color.

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

app.use(PrimeVueStyled);

Unstyled Mode

In unstyled mode, the components do not include any CSS so you'd need to style the components on your end. If you are using Tailwind CSS, visit the Tailwind Presets project to get you started with styling the components with Tailwind utility classes.

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

app.use(PrimeVueUnstyled);

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

The nuxt-primevue package is the official module by PrimeTek. See the nuxt documentation for details. information

Example

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

Contributors