with serverSideStorage, reduced overall need for SharedComputedObject in settings tabs, moved copypaste code of "setting" type of helpers into a separate file.
21 lines
432 B
JavaScript
21 lines
432 B
JavaScript
import Select from 'src/components/select/select.vue'
|
|
import ModifiedIndicator from './modified_indicator.vue'
|
|
import ProfileSettingIndicator from './profile_setting_indicator.vue'
|
|
import Setting from './setting.js'
|
|
|
|
export default {
|
|
components: {
|
|
Select,
|
|
ModifiedIndicator,
|
|
ProfileSettingIndicator
|
|
},
|
|
...Setting,
|
|
props: {
|
|
...Setting.props,
|
|
options: {
|
|
type: Array,
|
|
required: true
|
|
}
|
|
}
|
|
}
|