智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/56/568eca494c222c5cbfa0c6c9545...

37 lines
768 B

const FRONT_COLORS = ['#ffffff', '#000000']
export const setNavigationBarColor = {
frontColor: {
type: String,
required: true,
validator (frontColor, params) {
if (FRONT_COLORS.indexOf(frontColor) === -1) {
return `invalid frontColor "${frontColor}"`
}
}
},
backgroundColor: {
type: String,
required: true
},
animation: {
type: Object,
default () {
return {
duration: 0,
timingFunc: 'linear'
}
},
validator (animation = {}, params) {
params.animation = {
duration: animation.duration || 0,
timingFunc: animation.timingFunc || 'linear'
}
}
}
}
export const setNavigationBarTitle = {
title: {
type: String,
required: true
}
}