Vuetify —— Colors的使用

vuetify官方文档地址:https://vuetifyjs.com/en/styles/colors/#material-colors
在这里插入图片描述

<template>
  <div class="purple darken-2 text-center">
    <span class="white--text">Lorem ipsum</span>
  </div>
</template>

在这里插入图片描述
能将vuetify样式吃透,就不用发愁一行一行的手敲样式了。

如果需要在哪个dom元素上添加其背景色,只需要在其dom元素上添加 class="purple"

如果需要在哪个dom元素上添加其文字颜色,只需要在其dom元素上添加 class="purple–text"

猜你喜欢

转载自blog.csdn.net/Kiruthika/article/details/120214111