UNPKG
lixin-web
Version:
latest (1.0.5)
1.0.5
vue and bootstrap
lixin-web
/
webapp
/
component
/
date-picker
/
src
/
picker
/
time-select.js
14 lines
(10 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
Picker
from
'../picker'
;
import
Panel
from
'../panel/time-select'
;
export
default
{
mixins
: [
Picker
],
name
:
'ElTimeSelect'
,
beforeCreate
(
) {
this
.
type
=
'time-select'
;
this
.
panel
=
Panel
; } };