20 lines
332 B
Vue
20 lines
332 B
Vue
|
<template>
|
||
|
<Button type="submit" :severity :label />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'DynamicFormSubmit',
|
||
|
props: {
|
||
|
severity: {
|
||
|
type: String,
|
||
|
default: 'secondary'
|
||
|
},
|
||
|
label: {
|
||
|
type: String,
|
||
|
default: 'Submit'
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|