init git
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
export default () => {
|
||||
const { t } = inject('service')
|
||||
return reactive({
|
||||
closeBtn: {
|
||||
props: {
|
||||
icon: 'isax isax-close-circle',
|
||||
severity: 'secondary',
|
||||
rounded: true,
|
||||
text: true
|
||||
}
|
||||
},
|
||||
fields: {
|
||||
title: {
|
||||
props: {
|
||||
placeholder: ''
|
||||
},
|
||||
is: 'InputText',
|
||||
label: t('commentTitle'),
|
||||
},
|
||||
positive: {
|
||||
props: {
|
||||
// separator: ',',
|
||||
placeholder: '',
|
||||
max: 10
|
||||
},
|
||||
is: 'Chips',
|
||||
label: t('positivePoints'),
|
||||
},
|
||||
negative: {
|
||||
props: {
|
||||
// separator: ',',
|
||||
placeholder: '',
|
||||
max: 10
|
||||
},
|
||||
is: 'Chips',
|
||||
label: t('negativePoints'),
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user