Skip to content

Commit 6ca54cf

Browse files
authored
fix(MdDialogContent): missing theme class (#1876)
1 parent ba308fc commit 6ca54cf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/components/MdDialog/MdDialogContent.vue

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<template>
2-
<div class="md-dialog-content">
2+
<div :class="['md-dialog-content', $mdActiveTheme]">
33
<slot />
44
</div>
55
</template>
66

77
<script>
8-
export default {
9-
name: 'MdDialogContent'
10-
}
8+
import MdComponent from 'core/MdComponent'
9+
10+
export default new MdComponent({
11+
name: 'MdDialogContent'
12+
})
1113
</script>
1214

1315
<style lang="scss">

0 commit comments

Comments
 (0)