You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
761 B
Vue
39 lines
761 B
Vue
<template>
|
|
<div>
|
|
<BorderSetting
|
|
ref="form"
|
|
:config="config"
|
|
:predefine-theme-colors="predefineThemeColors"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import BorderSetting from 'data-room-ui/BigScreenDesign/BorderSetting.vue'
|
|
import {predefineColors} from "data-room-ui/js/utils/colorList";
|
|
export default {
|
|
name: 'Border10Setting',
|
|
components: {
|
|
BorderSetting
|
|
},
|
|
data () {
|
|
return {
|
|
// 预设主题色
|
|
predefineThemeColors: predefineColors
|
|
}
|
|
},
|
|
computed: {
|
|
config: {
|
|
get () {
|
|
return this.$store.state.bigScreen.activeItemConfig
|
|
},
|
|
set (val) {
|
|
this.$store.state.bigScreen.activeItemConfig = val
|
|
}
|
|
}
|
|
},
|
|
watch: {},
|
|
mounted () { },
|
|
methods: {}
|
|
}
|
|
</script>
|