DemuMesDataV/mixins/colorsMixin.js

24 lines
439 B
JavaScript
Raw Normal View History

2018-12-20 18:25:49 +08:00
export default {
data () {
return {
2019-01-16 16:56:11 +08:00
defaultColors: [
'#9cf4a7', '#66d7ee', '#eee966',
'#a866ee', '#ee8f66', '#ee66aa'
],
2018-12-20 18:25:49 +08:00
2018-12-20 22:36:34 +08:00
drawColors: '',
drawColorsMul: false
2018-12-20 18:25:49 +08:00
}
},
methods: {
initColors () {
const { colors, defaultColors } = this
2018-12-20 22:36:34 +08:00
const trueDrawColors = this.drawColors = colors || defaultColors
this.drawColorsMul = trueDrawColors instanceof Array
2018-12-20 18:25:49 +08:00
}
}
}