Go to file
Tuğçe Küçükoğlu a63ccbb4bc Update README.md 2023-03-20 14:12:47 +03:00
.github Apidoc workflow added 2023-03-08 11:23:47 +03:00
.vscode update .vscode 2022-12-19 13:52:02 +03:00
api-generator Fixed #3753 - ConfirmDialog: Add draggable property 2023-03-16 17:37:09 +03:00
assets Fixed material light theme switch, cosmetics on docs 2023-03-20 13:04:29 +03:00
components Toast `life` default value fixed 2023-03-20 11:45:08 +03:00
doc Form validation example updates 2023-03-20 13:38:06 +03:00
layouts Merge branch 'master' of https://github.com/primefaces/primevue 2023-03-20 13:04:31 +03:00
middleware landing scroll top fix 2022-12-28 12:32:27 +03:00
pages Form validation example updates 2023-03-20 13:38:06 +03:00
plugins storageKey added 2023-03-08 12:58:44 +03:00
public add new examples main repo 2023-03-20 13:12:21 +03:00
service Merged new Docs and Demos 2023-02-28 11:29:30 +03:00
.eslintrc.js Update .eslintrc.js 2023-02-28 10:51:46 +00:00
.gitignore update for new free 6 themes 2023-01-27 14:56:16 +03: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 Update CHANGELOG.md 2023-03-13 16:43:38 +03:00
LICENSE.md Merged new Docs and Demos 2023-02-28 11:29:30 +03:00
README.md Update README.md 2023-03-20 14:12:47 +03:00
app.vue Add docsearch 2023-03-04 20:18:40 +03:00
build-meta.js Changes for package build 2022-09-14 17:49:38 +03:00
gulpfile.js update for new free 6 themes 2023-01-27 14:56:16 +03:00
nuxt.config.js Remove @vitejs/plugin-vue-jsx package 2023-03-03 10:32:47 +03:00
package-build.json set new version 2023-03-14 09:12:31 +03:00
package-lock.json InputText Vee-Validate demo added 2023-03-15 17:50:39 +03:00
package.json InputText Vee-Validate demo added 2023-03-15 17:50:39 +03:00
rollup.config.js prettier warnings fixed 2022-12-20 15:32:32 +03:00
tsconfig.json Merged new Docs and Demos 2023-02-28 11:29:30 +03:00
vitest.config.js Merge branch 'master' into resolves-fix 2023-01-03 21:16:28 +01:00

README.md

License: MIT npm version Discord Chat

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 primeicons

// with yarn
yarn add primevue primeicons

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);

Styles

Theme, core and icons are the necessary css files of the components, visit the Themes section for the complete list of available themes to choose from.

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

// core
import 'primevue/resources/primevue.min.css';

// icons
import 'primeicons/primeicons.css';

Each PrimeVue theme has its own font family so it is suggested to apply it to your application for a unified look.

body {
    font-family: (--font-family);
}

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 kebap-case is also fully supported. Events on the other hand should always be kebap-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-blue/theme.css",
        "primevue/resources/primevue.css",
        "primeicons/primeicons.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|112

Nuxt

Nuxt|112

Vue-CLI

Vue-CLI|112

Astro

Astro|112 application with Vue CLI is available as at github.

Contributors