mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
import Vue from 'vue'
|
|
import VCalendar from 'v-calendar'
|
|
export default () => {
|
|
Vue.use(VCalendar, {
|
|
componentPrefix: 'vc',
|
|
// why is that ?!
|
|
firstDayOfWeek: 2
|
|
})
|
|
}
|