UNPKG
calendar-vue-app
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
一款高效、简洁、功能丰富、宽度可自适应的app端考勤日历插件
github.com/Liweifei/calendar-vue-app
Liweifei/calendar-vue-app
calendar-vue-app
/
src
/
main.js
10 lines
(9 loc)
•
169 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
"./assets/main.css"
import
Vue
from
'vue'
import
App
from
'./App.vue'
import
cv
from
"../lib/index"
;
Vue
.
use
(cv)
new
Vue
({
el
:
'#app'
,
render
:
h
=>
h
(
App
) })