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> 

    1 answer 1

    Just like any other tag. code Browser

    • Oh, and can you please make the code text - diraria
    • In this answer, screenshots were used to show that you can add any attributes to any vuetify UI component as well as to elements of standard HTML. The code itself in the images is just an example of what you write in the code and what you later see in the browser. - Nikita Loshenin