Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
fix(drawer): Add missing mixin import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
matsp committed May 27, 2018
1 parent ecd6fa0 commit 732ace2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/drawer/DrawerPermanent/DrawerPermanent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</template>

<script>
import themeClassMixin from '../../base/themeClassMixin.js'
import { baseComponentMixin, themeClassMixin } from '../../base'
export default {
mixins: [baseComponentMixin, themeClassMixin]
Expand Down
2 changes: 1 addition & 1 deletion components/drawer/DrawerPersistent/DrawerPersistent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<script>
import { MDCPersistentDrawer } from '@material/drawer'
import themeClassMixin from '../../base/themeClassMixin.js'
import { baseComponentMixin, themeClassMixin } from '../../base'
export default {
mixins: [baseComponentMixin, themeClassMixin],
Expand Down
2 changes: 1 addition & 1 deletion components/drawer/DrawerTemporary/DrawerTemporary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<script>
import { MDCTemporaryDrawer } from '@material/drawer'
import themeClassMixin from '../../base/themeClassMixin.js'
import { baseComponentMixin, themeClassMixin } from '../../base'
export default {
mixins: [baseComponentMixin, themeClassMixin],
Expand Down

0 comments on commit 732ace2

Please sign in to comment.