mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-12 09:13:11 +00:00
22 lines
351 B
Vue
22 lines
351 B
Vue
<template>
|
|
<div class="md-card" :class="classes">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" src="./mdCard.scss"></style>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
mdWithHover: Boolean
|
|
},
|
|
computed: {
|
|
classes() {
|
|
return {
|
|
'md-with-hover': this.mdWithHover
|
|
};
|
|
}
|
|
}
|
|
};
|
|
</script>
|