aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings_modal/helpers/boolean_setting.js
blob: 0df01d318414dcee71edc2f276a9438bb6ae8bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Checkbox from 'src/components/checkbox/checkbox.vue'
import Setting from './setting.js'

export default {
  ...Setting,
  components: {
    ...Setting.components,
    Checkbox
  },
  methods: {
    ...Setting.methods,
    getValue (e) {
      return e
    }
  }
}