vuetfiy 框架怎么查看有哪些CSSS类名?
比如下面的class="text-h2 pa-12" class="justify-end" 在什么地方可以完全查看这些类名具体是什么样式?
<template>
<v-dialog width="auto" v-model="dialog">
<v-card color="white" v-click-outside="{handler: onClickOutside}">
<v-toolbar color="primary">
<v-card-title>
<span>{{dialogData.title}}</span>
</v-card-title>
</v-toolbar>
<v-card-text>
<div class="text-h2 pa-12">{{dialogData.content}}</div>
</v-card-text>
<v-card-actions class="justify-end">
<v-btn variant="text" @click="closeDialog">Close</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
样式和动画