Skip to content

Commit bc33fae

Browse files
committed
Merge fixing
2 parents 57dc30e + c3d947c commit bc33fae

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9-
liberapay: # Replace with a single Liberapay username
9+
liberapay: manuk
1010
issuehunt: # Replace with a single IssueHunt username
1111
otechie: # Replace with a single Otechie username
1212
custom: # Replace with a single custom sponsorship URL

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Build Status](https://travis-ci.org/ManukMinasyan/vue-functional-calendar.svg?branch=master)](https://travis-ci.org/ManukMinasyan/vue-functional-calendar)
44
[![Version](https://img.shields.io/npm/v/vue-functional-calendar.svg)](https://www.npmjs.com/package/vue-functional-calendar)
5-
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
6-
[![Downloads](https://img.shields.io/npm/dm/vue-functional-calendar.svg)](https://www.npmjs.com/package/vue-functional-calendar)
5+
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
6+
[![Downloads](https://img.shields.io/npm/dt/vue-functional-calendar.svg)](https://www.npmjs.com/package/vue-functional-calendar)
77
![gzip size](https://img.shields.io/badge/gzip%20size-5.73%20kB-44cc11.svg)
88
___
99

@@ -47,7 +47,7 @@ ___
4747
// Introduced in vue file
4848
import FunctionalCalendar from 'vue-functional-calendar';
4949
Vue.use(FunctionalCalendar, {
50-
dayNames: ['Moa', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su']
50+
dayNames: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su']
5151
});
5252
````
5353

src/main.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
1+
<<<<<<< HEAD
12
import Vue from 'vue';
23
import FunctionalCalendar from '../index';
34
import Demo from './Demo';
45

56
Vue.use(FunctionalCalendar, {dayNames: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su']});
7+
=======
8+
import Vue from "vue";
9+
import FunctionalCalendar from "../index";
10+
import Demo from "./Demo";
11+
Vue.use(FunctionalCalendar, {
12+
dayNames: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"]
13+
});
14+
>>>>>>> c3d947c02d49b17d50f1fc268c051c365bb5be7e
615
Vue.config.productionTip = false;
716

817
new Vue({
9-
el: '#app',
10-
template: '<Demo/>',
11-
components: {Demo}
18+
el: "#app",
19+
template: "<Demo/>",
20+
components: { Demo }
1221
});

0 commit comments

Comments
 (0)