mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
34 lines
846 B
Vue
34 lines
846 B
Vue
<template>
|
|
<div class="modal modalContainer" :data-type="this.type">
|
|
<div class="modal-dialog" v-bind:class="[{'modal-lg': this.large}, {'modal-sm': this.small}]">
|
|
<div class="modal-content">
|
|
<div class="modal-body">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
'type': {
|
|
type: String,
|
|
required: true
|
|
},
|
|
'large': {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
'small': {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
'effect': {
|
|
type: String,
|
|
default: "stick-up"
|
|
}
|
|
}
|
|
}
|
|
</script>
|