UNPKG
@angelblanco/v-calendar
Version:
latest (3.1.3)
3.1.3
A calendar and date picker plugin for Vue.js.
vcalendar.io
angelblanco/v-calendar
@angelblanco/v-calendar
/
src
/
utils
/
config
/
index.ts
12 lines
(7 loc)
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
type
{
App
as
Application
}
from
'vue'
;
const
config = {};
export
{ config
as
default
};
export
let
VueInstance
:
Application
;
export
const
setVueInstance
= (
instance
:
Application
) => {
VueInstance
= instance; };