Skip to content

Commit

Permalink
fix(MdDialogContent): missing theme class (#1876)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuell1 authored Jul 27, 2018
1 parent ba308fc commit 6ca54cf
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/MdDialog/MdDialogContent.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<template>
<div class="md-dialog-content">
<div :class="['md-dialog-content', $mdActiveTheme]">
<slot />
</div>
</template>

<script>
export default {
name: 'MdDialogContent'
}
import MdComponent from 'core/MdComponent'
export default new MdComponent({
name: 'MdDialogContent'
})
</script>

<style lang="scss">
Expand Down

0 comments on commit 6ca54cf

Please sign in to comment.