JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<div v-for="(value,index) in infoTexts" :key="index">
{{value}}
</div>
</div>
JavaScript
new Vue({
el: '#app',
data: {
infoTexts: [{"Description": "sadsadsad asdsadsa sadsad", "id": 1, "CreatedDate": "2018-10-01T15:03:36.842Z", "Author_id": 1, "DeletedBy": "", "Name": "Individual"}, {"Description": "dfsdfsdfsd sdfsdfsd sdfsdf", "id": 2, "CreatedDate": "2018-10-01T15:04:35.731Z", "Author_id": 1, "DeletedBy": "", "Name": "Organisation"}, {"Description": "sdfsdfsdfsdf", "id": 3, "CreatedDate": "2018-10-01T15:05:04.625Z", "Author_id": 1, "DeletedBy": "", "Name": "Company"}]
}
});