mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-12 17:23:11 +00:00
20 lines
294 B
Vue
20 lines
294 B
Vue
<template>
|
|
<div class="md-card-area" :class="classes">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
mdInset: Boolean
|
|
},
|
|
computed: {
|
|
classes() {
|
|
return {
|
|
'md-inset': this.mdInset
|
|
};
|
|
}
|
|
}
|
|
};
|
|
</script>
|