Sub-Store/web/src/plugins/vuetify.js
Peng-YM 2766e23aa0 Sub-Store 1.0版本
1. 移除了所有基于关键词的节点操作,统一使用基于正则表达式的节点操作。
2. UI的大量改进。
2020-12-05 13:39:11 +08:00

25 lines
372 B
JavaScript

import Vue from 'vue'
import Vuetify from 'vuetify/lib'
import i18n from '@/i18n'
Vue.use(Vuetify)
const theme = {
primary: '#E91E63',
secondary: '#9C27b0',
accent: '#9C27b0',
info: '#00CAE3'
}
export default new Vuetify({
lang: {
t: (key, ...params) => i18n.t(key, params)
},
theme: {
themes: {
dark: theme,
light: theme
}
}
})