mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/tickme.git
synced 2026-08-25 23:44:06 +00:00
23 lines
785 B
Vue
23 lines
785 B
Vue
<template>
|
|
<div class="row parentContainer">
|
|
<div class="col">
|
|
<button type="button" class="btn btn-primary btn-lg top-right-button mr-1 requestModal" data-type="createModal">ADD NEW</button>
|
|
<form-component :section="section" >
|
|
<template slot="form" slot-scope="{section}">
|
|
<component :is="(section.replace('Section', '')).replace(/[A-Z]/g, m => '-' + m.toLowerCase())+'-form-component'" project-form-component :section="section"></component>
|
|
</template>
|
|
</form-component>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
'section': {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|