mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-09 07:54:43 +00:00
22 lines
354 B
Vue
22 lines
354 B
Vue
<template>
|
|
<td class="md-table-cell" :class="classes">
|
|
<div class="md-table-cell-container">
|
|
<slot></slot>
|
|
</div>
|
|
</td>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
mdNumeric: Boolean
|
|
},
|
|
computed: {
|
|
classes() {
|
|
return {
|
|
'md-numeric': this.mdNumeric
|
|
};
|
|
}
|
|
}
|
|
};
|
|
</script>
|