11 changed files with 52 additions and 78 deletions
@ -1,29 +0,0 @@ |
|||||
// header preset color
|
|
||||
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [ |
|
||||
'#ffffff', |
|
||||
'#009688', |
|
||||
'#5172DC', |
|
||||
'#1E9FFF', |
|
||||
'#018ffb', |
|
||||
'#409eff', |
|
||||
'#4e73df', |
|
||||
'#e74c3c', |
|
||||
'#24292e', |
|
||||
'#394664', |
|
||||
'#001529', |
|
||||
'#383f45', |
|
||||
]; |
|
||||
|
|
||||
// sider preset color
|
|
||||
export const SIDE_BAR_BG_COLOR_LIST: string[] = [ |
|
||||
'#001529', |
|
||||
'#273352', |
|
||||
'#ffffff', |
|
||||
'#191b24', |
|
||||
'#191a23', |
|
||||
'#304156', |
|
||||
'#001628', |
|
||||
'#28333E', |
|
||||
'#344058', |
|
||||
'#383f45', |
|
||||
]; |
|
||||
@ -1,3 +1,33 @@ |
|||||
export default { |
export default { |
||||
prefixCls: 'vben', |
prefixCls: 'vben', |
||||
}; |
}; |
||||
|
|
||||
|
// header preset color
|
||||
|
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [ |
||||
|
'#ffffff', |
||||
|
'#009688', |
||||
|
'#5172DC', |
||||
|
'#1E9FFF', |
||||
|
'#018ffb', |
||||
|
'#409eff', |
||||
|
'#4e73df', |
||||
|
'#e74c3c', |
||||
|
'#24292e', |
||||
|
'#394664', |
||||
|
'#001529', |
||||
|
'#383f45', |
||||
|
]; |
||||
|
|
||||
|
// sider preset color
|
||||
|
export const SIDE_BAR_BG_COLOR_LIST: string[] = [ |
||||
|
'#001529', |
||||
|
'#273352', |
||||
|
'#ffffff', |
||||
|
'#191b24', |
||||
|
'#191a23', |
||||
|
'#304156', |
||||
|
'#001628', |
||||
|
'#28333E', |
||||
|
'#344058', |
||||
|
'#383f45', |
||||
|
]; |
||||
|
|||||
@ -1,19 +0,0 @@ |
|||||
// Load on demand
|
|
||||
// This module only introduces components globally before login
|
|
||||
import type { App } from 'vue'; |
|
||||
|
|
||||
import { |
|
||||
// need
|
|
||||
Form, |
|
||||
Input, |
|
||||
Row, |
|
||||
Col, |
|
||||
Spin, |
|
||||
} from 'ant-design-vue'; |
|
||||
import 'ant-design-vue/dist/antd.css'; |
|
||||
|
|
||||
export function setupAntd(app: App<Element>) { |
|
||||
// need
|
|
||||
// Here are the components required before registering and logging in
|
|
||||
app.use(Form).use(Input).use(Row).use(Col).use(Spin); |
|
||||
} |
|
||||
Loading…
Reference in new issue