UNPKG
vuikit
Version:
latest (0.8.10)
next (0.9.0-beta3)
0.9.0-beta3
0.9.0-beta2
0.9.0-beta
0.8.10
0.8.9
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.0
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
A Vuejs component library based on UIkit
vuikit.js.org
vuikit
/
src
/
components
/
nav
/
nav-item-header.js
25 lines
(21 loc)
•
305 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic *
@license
MIT
*/
export
default
{
functional
:
true
,
props
: {
label
: {
type
:
String
,
required
:
true
} },
render
(h, { props, children }) {
return
h
(
'li'
, {
class
:
'uk-nav-header'
}, [ props.
label
]) } }