mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Add forms
demo page
This commit is contained in:
parent
9f8003ad9d
commit
4929f978f2
24 changed files with 3002 additions and 22 deletions
19
apps/showcase/doc/forms/dynamic/DynamicFormSubmit.vue
Normal file
19
apps/showcase/doc/forms/dynamic/DynamicFormSubmit.vue
Normal file
|
@ -0,0 +1,19 @@
|
|||
<template>
|
||||
<Button type="submit" :severity :label />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'DynamicFormSubmit',
|
||||
props: {
|
||||
severity: {
|
||||
type: String,
|
||||
default: 'secondary'
|
||||
},
|
||||
label: {
|
||||
type: String,
|
||||
default: 'Submit'
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue