primevue-mirror/doc/installation/PropCasesDoc.vue

24 lines
612 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-03-13 11:37:53 +00:00
<p>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.</p>
2023-02-28 08:29:30 +00:00
2023-03-03 12:15:58 +00:00
<DocSectionCode :code="code" hideToggleCode hideCodeSandbox hideStackBlitz />
2023-02-28 08:29:30 +00:00
</DocSectionText>
</template>
<script>
export default {
data() {
return {
code: {
2023-03-02 12:23:54 +00:00
basic: `<Dialog :showHeader="false"></Dialog>
2023-02-28 08:29:30 +00:00
<!-- can be written as -->
<Dialog :show-header="false"></Dialog>`
}
};
}
};
</script>