data(){
     return ({
         description:'Description of the site'
     })
 }
 head(){
     return({
         title: 'Home page',
         meta: [
           {
             hid: 'description',
             name: 'description',
             content: `${this.description}`
           }
         ],
        script:[{
           type:'application/ld+json',
           json: {
             '@context': 'http://schema.org',
             '@type': <<Type gotten from Schema.org>>,
             // Remaining properties
           }
        }]
     })
 }