remove mixin

This commit is contained in:
Marcos Moura 2016-12-12 03:10:54 -02:00
parent 53d3a58019
commit e2333e14e0
2 changed files with 6 additions and 11 deletions

View file

@ -1,10 +1,13 @@
<style lang="scss" src="./mdLayout.scss"></style>
<script>
import tag from './tag';
export default {
mixins: [tag],
props: {
mdTag: {
type: String,
default: 'div'
}
},
render(createElement) {
return createElement(this.mdTag, {
staticClass: 'md-layout',

View file

@ -1,8 +0,0 @@
export default {
props: {
mdTag: {
type: String,
default: 'div'
}
}
};