Merge pull request #2604 from tugcekucukoglu/refactor-readme

Update README.md
pull/2605/head
Tuğçe Küçükoğlu 2022-06-01 10:40:21 +03:00 committed by GitHub
commit 61dbdeb260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ Other alternative is utilizing the components directly within the browser with t
The css dependencies are as follows, note that you may change the theme with another one of your choice.
```
```css
primevue/resources/themes/saga-blue/theme.css //theme
primevue/resources/primevue.min.css //core css
primeicons/primeicons.css //icons
@ -192,7 +192,7 @@ dependencies: {
Component prop names are described as camel case throughout the documentation however camel-case is also fully supported. Events on the other hand should always be camel-case.
```
```vue
<Dialog :showHeader="false"></Dialog>
<!-- can be written as -->
@ -204,7 +204,7 @@ Component prop names are described as camel case throughout the documentation ho
Ripple is an optional animation for the supported components such as buttons. It is disabled by default and needs to be enabled at your app's entry file (e.g. main.js) during the PrimeVue setup.
```
```javascript
import {createApp} from 'vue';
import PrimeVue from 'primevue/config';
const app = createApp(App);