primevue-mirror/README.md

91 lines
3.2 KiB
Markdown
Raw Normal View History

2019-05-27 10:32:08 +00:00
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue)
2021-04-15 13:44:04 +00:00
[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)
2023-09-17 18:36:05 +00:00
[![Prime Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)
2023-09-28 21:01:49 +00:00
[![PrimeVue Hero](https://www.primefaces.org/static/social/primevue-preview.jpg)](https://primevue.org/)
2022-02-09 10:47:35 +00:00
# PrimeVue
2019-05-27 10:32:08 +00:00
2023-03-08 13:28:23 +00:00
PrimeVue is a rich set of open source UI Components for Vue. See [PrimeVue homepage](https://primevue.org/) for live showcase and documentation.
2022-02-09 10:47:35 +00:00
## Download
2023-03-20 11:00:18 +00:00
PrimeVue is available at [npm](https://www.npmjs.com/package/primevue).
2022-02-09 10:47:35 +00:00
2023-09-26 13:43:11 +00:00
```
2023-10-18 08:22:00 +00:00
# Using npm
2023-04-18 15:05:44 +00:00
npm install primevue
2022-02-09 10:47:35 +00:00
2023-10-18 08:22:00 +00:00
# Using yarn
2023-04-18 15:05:44 +00:00
yarn add primevue
2023-10-18 08:22:00 +00:00
# Using pnpm
2023-10-19 06:09:55 +00:00
pnpm add primevue
2023-09-26 13:43:11 +00:00
```
2022-02-09 10:47:35 +00:00
2023-03-20 11:00:18 +00:00
## Plugin
2022-02-09 10:47:35 +00:00
2024-04-02 10:37:05 +00:00
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.
2022-02-09 10:47:35 +00:00
2023-07-10 19:42:44 +00:00
**Styled Mode**
2024-04-02 10:37:05 +00:00
Styled mode provides pre-skinned components, default theme is Aura with emerald as the primary color.
2022-02-09 10:47:35 +00:00
```javascript
2024-04-02 10:37:05 +00:00
import { createApp } from 'vue';
import PrimeVueStyled from 'primevue/config';
const app = createApp(App);
app.use(PrimeVueStyled);
2022-02-09 10:47:35 +00:00
```
2023-07-10 19:42:44 +00:00
**Unstyled Mode**
2024-04-02 10:37:05 +00:00
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](https://tailwind.primevue.org) project to get you started with styling the components with Tailwind utility classes.
2023-07-10 09:43:08 +00:00
```javascript
2023-09-26 13:43:11 +00:00
import { createApp } from 'vue';
2024-04-02 10:37:05 +00:00
import PrimeVueUnstyled from 'primevue/config';
2023-07-10 09:43:08 +00:00
const app = createApp(App);
2022-02-09 10:47:35 +00:00
2024-04-02 10:37:05 +00:00
app.use(PrimeVueUnstyled);
2023-07-10 09:43:08 +00:00
```
2022-02-09 10:47:35 +00:00
2023-03-20 11:00:18 +00:00
## Usage
2022-02-09 10:47:35 +00:00
2023-03-20 11:00:18 +00:00
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.
2022-02-09 10:47:35 +00:00
```javascript
2023-09-26 13:43:11 +00:00
import Button from 'primevue/button';
2023-03-20 11:00:18 +00:00
const app = createApp(App);
app.component('Button', Button);
2022-02-09 10:47:35 +00:00
```
2023-03-20 11:00:18 +00:00
## Prop Cases
2022-02-09 10:47:35 +00:00
2023-10-12 08:24:34 +00:00
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.
2022-02-09 10:47:35 +00:00
2023-03-20 11:00:18 +00:00
```vue
<Dialog :showHeader="false"></Dialog>
2022-02-09 10:47:35 +00:00
2023-03-20 11:00:18 +00:00
<!-- can be written as -->
2022-02-09 10:47:35 +00:00
2023-03-20 11:00:18 +00:00
<Dialog :show-header="false"></Dialog>
2022-02-09 10:47:35 +00:00
```
## Nuxt Integration
2024-04-02 10:38:09 +00:00
The [nuxt-primevue](https://www.npmjs.com/package/nuxt-primevue) package is the official module by PrimeTek. See the nuxt documentation for details. [information](https://primevue.org/nuxt)
2023-10-18 08:27:14 +00:00
2023-03-20 11:00:18 +00:00
## Example
2022-02-09 10:47:35 +00:00
2023-03-20 11:00:18 +00:00
We've created various samples for the popular options in the Vue ecosystem. Visit the [primevue-examples](https://github.com/primefaces/primevue-examples) repository for the samples.
2022-02-09 10:47:35 +00:00
2023-03-13 11:15:48 +00:00
## Contributors
<a href="https://github.com/primefaces/primevue/graphs/contributors">
<img src="https://contrib.rocks/image?repo=primefaces/primevue" />
2023-07-10 09:45:26 +00:00
</a>