JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
  <cell :cell="week.today"></cell>
  <cell :cell="week.tomorrow"></cell>
</div>

JavaScript

Vue.component('cell', {
  props: ['cell'],
  template: '<div>Day is {{ cell.name }}</div>'
})

new Vue({
  el: '#container',
  data: {
    "week": {
      "today": {
        "name": "Monday"
      },
      "tomorrow": {
        "name": "Tuesday"
      }
    }
  }
})