【问题标题】:How to change color theme in Vuetify?如何在 Vuetify 中更改颜色主题?
【发布时间】:2021-06-25 08:42:22
【问题描述】:

我知道这些问题已经在这里了,但没有一个答案对我来说不起作用。 我正在尝试更改 vuetify.js 文件中的颜色,但它不起作用:

import Vue from 'vue';
import Vuetify from 'vuetify/lib/framework';

Vue.use(Vuetify, {
    theme:{
        error: '#ffaa2c'
    }
});

export default new Vuetify({
});

我做错了什么?

【问题讨论】:

标签: vue.js colors themes vuetify.js


【解决方案1】:

您需要在light(默认)或dark 主题内更改它...

    Vue.use(Vuetify, {
      theme: {
        light: {
           error: '#ffaa2c'
        }
      }
    })

演示:https://codeply.com/p/zeJQGngc6j

【讨论】:

    猜你喜欢
    • 2021-03-11
    • 2020-12-30
    • 2020-04-21
    • 2018-08-13
    • 2018-09-23
    • 2019-05-11
    • 2020-08-29
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多