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 responsive Vue UI library for web site interfaces based on UIkit
vuikit.js.org
vuikit
/
src
/
library
/
button
/
elements
/
button-link.js
11 lines
(9 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ mergeData }
from
'vuikit/src/util/vue'
import
{ props, def }
from
'./_common.js'
export
default
{
functional
:
true
, props,
render
(h, { props, data, children }) {
return
h
(
'a'
,
mergeData
(data,
def
(props)), children) } }