@afeefa/vue-app 0.0.329 → 0.0.330
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.330
|
package/package.json
CHANGED
|
@@ -311,7 +311,7 @@ export default class ADatePicker extends Mixins(ComponentWidthMixin, UsesPositio
|
|
|
311
311
|
get displayedInputValue () {
|
|
312
312
|
if (this.type === 'month') {
|
|
313
313
|
const date = this.value_
|
|
314
|
-
const monthName = date.toLocaleString('
|
|
314
|
+
const monthName = date.toLocaleString('de-DE', { month: 'long' })
|
|
315
315
|
return monthName + ' ' + date.getFullYear()
|
|
316
316
|
}
|
|
317
317
|
|
|
@@ -35,10 +35,15 @@ import {
|
|
|
35
35
|
} from '@mdi/js'
|
|
36
36
|
import Vue from 'vue'
|
|
37
37
|
import Vuetify from 'vuetify/lib'
|
|
38
|
+
import de from 'vuetify/lib/locale/de'
|
|
38
39
|
|
|
39
40
|
Vue.use(Vuetify)
|
|
40
41
|
|
|
41
42
|
export default new Vuetify({
|
|
43
|
+
lang: {
|
|
44
|
+
locales: { de },
|
|
45
|
+
current: 'de'
|
|
46
|
+
},
|
|
42
47
|
icons: {
|
|
43
48
|
iconfont: 'mdiSvg',
|
|
44
49
|
values: {
|