mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-24 06:43:45 +00:00
16 lines
309 B
Vue
16 lines
309 B
Vue
|
|
<style lang="scss" src="./mdLayout.scss"></style>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import tag from './tag';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
mixins: [tag],
|
||
|
|
render(createElement) {
|
||
|
|
return createElement(this.mdTag, {
|
||
|
|
staticClass: 'md-layout',
|
||
|
|
class: this.classes
|
||
|
|
}, this.$slots.default);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|