vue-material/src/components/mdTable/mdTableCell.vue

23 lines
354 B
Vue
Raw Normal View History

2016-10-27 05:52:58 +00:00
<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>