pleroma-fe/src/components/settings_modal/helpers/boolean_setting.js

17 lines
271 B
JavaScript
Raw Normal View History

2021-04-07 17:53:58 +00:00
import Checkbox from 'src/components/checkbox/checkbox.vue'
import Setting from './setting.js'
2021-04-07 17:53:58 +00:00
export default {
...Setting,
2021-04-07 17:53:58 +00:00
components: {
...Setting.components,
Checkbox
2021-04-07 17:53:58 +00:00
},
methods: {
...Setting.methods,
getValue (e) {
return e
}
}
2021-04-07 17:53:58 +00:00
}