How to add your attributes to the tags Vuetify . I want to fasten Schema.org to the pages.
Component Example:
<template> <v-container> <v-layout row wrap > <v-flex xs12> <h1 class="content-title display-1">{{ post.title }}</h1> </v-flex> <v-flex xs12> <div class="content-body" v-html="getMarkdown(post.text)"></div> </v-flex> </v-layout> </v-container> </template> 
