Change-Id: Ie47db6b1b137edf0411fdddd125b768b70e242e2mr10.0
parent
17f2345b30
commit
b45da7aad6
@ -1,8 +1,17 @@
|
||||
export default ({ Vue, app }) => {
|
||||
Vue.prototype.$faxQualityOptions = [
|
||||
{ label: app.i18n.t('Normal'), value: 'normal' },
|
||||
{ label: app.i18n.t('Fine'), value: 'fine' },
|
||||
{ label: app.i18n.t('Super'), value: 'super' }
|
||||
{
|
||||
get label () { return app.i18n.t('Normal') },
|
||||
value: 'normal'
|
||||
},
|
||||
{
|
||||
get label () { return app.i18n.t('Fine') },
|
||||
value: 'fine'
|
||||
},
|
||||
{
|
||||
get label () { return app.i18n.t('Super') },
|
||||
value: 'super'
|
||||
}
|
||||
]
|
||||
Vue.prototype.$faxQualityOptionsDefault = Vue.prototype.$faxQualityOptions[0]
|
||||
}
|
||||
|
Loading…
Reference in new issue