Skip to content

Commit

Permalink
Merge pull request #41 from OneCareerJP/feat/m-modal
Browse files Browse the repository at this point in the history
update `MModal` component
  • Loading branch information
shskwmt authored Sep 29, 2021
2 parents f54f736 + a483ccd commit 2141953
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oc-mina-ui",
"version": "0.1.4",
"version": "0.1.5",
"description": "mina-ui is a component library for Vue.js(v2.6)",
"license": "MIT",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions src/components/atoms/MModal/MModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
rounded
:style="containerSize"
>
<section class="m-modal__header">
<section v-if="$slots.header" class="m-modal__header">
<slot name="header" />
</section>
<section class="m-modal__body">
<section v-if="$slots.body" class="m-modal__body">
<slot name="body" />
</section>
<section class="m-modal__footer">
<section v-if="$slots.footer" class="m-modal__footer">
<slot name="footer" />
</section>
</MPanel>
Expand Down

0 comments on commit 2141953

Please sign in to comment.