2021-03-11 14:55:14 +00:00
|
|
|
import Select from 'src/components/select/select.vue'
|
|
|
|
import ModifiedIndicator from './modified_indicator.vue'
|
2023-03-12 12:32:13 +00:00
|
|
|
import ProfileSettingIndicator from './profile_setting_indicator.vue'
|
|
|
|
import Setting from './setting.js'
|
|
|
|
|
2021-03-11 14:55:14 +00:00
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Select,
|
2022-02-28 16:15:21 +00:00
|
|
|
ModifiedIndicator,
|
2023-03-12 12:32:13 +00:00
|
|
|
ProfileSettingIndicator
|
2021-03-11 14:55:14 +00:00
|
|
|
},
|
2023-03-12 12:32:13 +00:00
|
|
|
...Setting,
|
|
|
|
props: {
|
|
|
|
...Setting.props,
|
|
|
|
options: {
|
|
|
|
type: Array,
|
|
|
|
required: true
|
2021-03-11 14:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|