JSFiddle - React, Tailwind, and code Playground

by shamaleyte

HTML

<script src="https://cdn.jsdelivr.net/npm/vue"></script>

<div id="app">
  {{ users }}
</div>

JavaScript

var app = new Vue({
  el: '#app',
  data: {
    users: {
      1234:{ name: 'Tom1', topics: [345, 3456] },
      46473: { name: 'Tom2', topics: [345, 3456] } // keep only ids of nested items.
    },
    userList: [46473, 1234],
    topics: { 
      345: { title : "osman" }, 
      3456: { title : "osman2" }
    },
  },
  computed :{
  
  }
})