2021-04-07 17:53:58 +00:00
|
|
|
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
2023-03-12 12:32:13 +00:00
|
|
|
import Setting from './setting.js'
|
|
|
|
|
2021-04-07 17:53:58 +00:00
|
|
|
export default {
|
2023-03-16 21:18:55 +00:00
|
|
|
...Setting,
|
2021-04-07 17:53:58 +00:00
|
|
|
components: {
|
2023-03-16 21:18:55 +00:00
|
|
|
...Setting.components,
|
|
|
|
Checkbox
|
2021-04-07 17:53:58 +00:00
|
|
|
},
|
2023-03-16 21:18:55 +00:00
|
|
|
methods: {
|
|
|
|
...Setting.methods,
|
|
|
|
getValue (e) {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
}
|
2021-04-07 17:53:58 +00:00
|
|
|
}
|