UNPKG
vue-year-picker
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
vue year picker
github.com/wj100/vue-year-picker/blob/main/README.md
wj100/vue-year-picker
vue-year-picker
/
src
/
main.js
13 lines
(10 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
Vue
from
'vue'
import
App
from
'./App'
import
yearPicker
from
'./lib/index'
Vue
.
config
.
productionTip
=
false
Vue
.
use
(yearPicker)
/* eslint-disable no-new */
new
Vue
({
el
:
'#app'
,
render
:
h
=>
h
(
App
) })