1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <div class="modal is-active">
- <div class="modal-background" @click="closeCurrentModal()" />
- <div class="modal-card">
- <header class="modal-card-head">
- <h2 class="modal-card-title is-marginless">
- {{ title }}
- </h2>
- <button class="delete" @click="closeCurrentModal()" />
- </header>
- <section class="modal-card-body">
- <slot name="body" />
- </section>
- <footer class="modal-card-foot" v-if="$slots['footer'] != null">
- <slot name="footer" />
- </footer>
- </div>
- </div>
- </template>
- <script>
- import { mapActions } from "vuex";
- export default {
- props: {
- title: { type: String }
- },
- methods: {
- toCamelCase: str => {
- return str
- .toLowerCase()
- .replace(/[-_]+/g, " ")
- .replace(/[^\w\s]/g, "")
- .replace(/ (.)/g, $1 => $1.toUpperCase())
- .replace(/ /g, "");
- },
- ...mapActions("modals", ["closeCurrentModal"])
- },
- mounted() {
- this.type = this.toCamelCase(this.title);
- }
- };
- </script>
- <style lang="scss" scoped>
- p {
- font-size: 17px;
- }
- .modal-card-title {
- font-size: 27px;
- }
- </style>
|